biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +258 -237
  8. biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +233 -205
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp310-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +219 -198
  70. biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112813 -0
  97. biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +215 -196
  102. biotite/structure/sasa.cp310-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biotite
3
- Version: 0.39.0
3
+ Version: 0.41.0
4
4
  Summary: A comprehensive library for computational molecular biology
5
5
  Author: The Biotite contributors
6
6
  License: BSD 3-Clause License
@@ -48,11 +48,11 @@ Classifier: Operating System :: Microsoft :: Windows
48
48
  Classifier: Programming Language :: Python :: 3
49
49
  Classifier: Programming Language :: Python :: Implementation :: CPython
50
50
  Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
51
- Requires-Python: >=3.7
51
+ Requires-Python: >=3.10
52
52
  Description-Content-Type: text/x-rst
53
53
  License-File: LICENSE.rst
54
54
  Requires-Dist: requests >=2.12
55
- Requires-Dist: numpy >=1.14.5
55
+ Requires-Dist: numpy <=2.0,>=1.14.5
56
56
  Requires-Dist: msgpack >=0.5.6
57
57
  Requires-Dist: networkx >=2.0
58
58
  Provides-Extra: test
@@ -1,6 +1,6 @@
1
- biotite/__init__.py,sha256=owozDFc8SQWwuheiCCYOy-yH3_j8q-gi9NGQU1qNqoI,543
1
+ biotite/__init__.py,sha256=Ik4G4g6cxAnWqDNPfy8RfXVnO39z1jyD5QxOXwNKXng,541
2
2
  biotite/copyable.py,sha256=bS6JvqiG2G-8Kav7hzJb2mhO0mSpgjFvm_LD_t9dTLA,2042
3
- biotite/file.py,sha256=M7FlQdNOUjDOBjkLMrzPq-xljwEFe93jFCLrFV6rprw,7578
3
+ biotite/file.py,sha256=Hu4NPQOgTtgt10fgRSOaD92Ur2rBMUUBW-fOniFUsJw,7680
4
4
  biotite/temp.py,sha256=zROAfIdwaqso8_cvpVkCM37LNtzpke-XIoidHZkDnuY,2130
5
5
  biotite/visualize.py,sha256=yuQJEwZhfbXPR8tWKUywusP1puFlLc_DAbctY_nCrhM,10092
6
6
  biotite/application/__init__.py,sha256=k1y1IgbK_vZJdHbQt4cgNgR1auc-riGcjrb5rkhyQuQ,1778
@@ -17,7 +17,7 @@ biotite/application/blast/webapp.py,sha256=J_uRQMFMdCOyGP-kEaXRNLgDHopUU68Wcuru5
17
17
  biotite/application/clustalo/__init__.py,sha256=11hGCckaAM6MOv9krf585L5-7JAgRMJv2bxv3UlrgAQ,336
18
18
  biotite/application/clustalo/app.py,sha256=hUA_bFHf_5M-Ath6brNC4-BzI0fdWS04AhDE_pV7M_U,8068
19
19
  biotite/application/dssp/__init__.py,sha256=ILnVuoQhzPQRXDyDVVu2_I4xCejdRtQY8PbsM1UExos,333
20
- biotite/application/dssp/app.py,sha256=l9J7VxfXP5WlpoCa-GZiNT1Vv5Tsyt73IwdbtsVkMd0,5081
20
+ biotite/application/dssp/app.py,sha256=g2z5u8bty5NxVNufaYavBECg65UlqWpSn98BShblxFg,4980
21
21
  biotite/application/mafft/__init__.py,sha256=AtmjXcE6WsWc8JxbcmUtIHDqPBh8cH1XTZrxWlEihx8,325
22
22
  biotite/application/mafft/app.py,sha256=YUuKdY7ELYQUfzO6CZ6TkqDKP3WDx_nyggVaBbkKASQ,3622
23
23
  biotite/application/muscle/__init__.py,sha256=22UWh76stefAwlwMayawfD9kJTjlsXdUfgrsnVze8Bw,349
@@ -41,12 +41,12 @@ biotite/database/entrez/download.py,sha256=Ieqx9Rx_A36RZiEMzuY1pw8CXEnofHguLQ9qR
41
41
  biotite/database/entrez/key.py,sha256=XSaqJT7IhbGI1UUZNmgbu0elKJ9KWRvxHhOS6aw8QhI,1154
42
42
  biotite/database/entrez/query.py,sha256=n55TM0yhJVhywTA60o159_GDrnff3kfxXrS5MbrE76o,7245
43
43
  biotite/database/pubchem/__init__.py,sha256=pTsYwm9pQYHTVFmkVJC0qZkN0cxl21ZwT5KqIR_qpuQ,688
44
- biotite/database/pubchem/download.py,sha256=6BC3p9lM6dF-AXc34LlkrI04AgUQAT_ZAG1b8jutLks,10377
44
+ biotite/database/pubchem/download.py,sha256=Y15plkcYOJCJOY7-kxGd_xoFs7xEscDLzj-INkFggxM,10257
45
45
  biotite/database/pubchem/error.py,sha256=rC91vT5WHPwdanldwLMJWUrYkdFDCZkjCiEHy_WpDZc,730
46
- biotite/database/pubchem/query.py,sha256=JhmrlulVF0FAFf92fmCipXkMALqTZgv9EV93pDcDxvs,27267
46
+ biotite/database/pubchem/query.py,sha256=1yvLR_wYtT-1ywij7wW8JIM7ohj2qO8ux7flu4PLOVY,27252
47
47
  biotite/database/pubchem/throttle.py,sha256=GK-x6_zV7gJ3gUyxEUSbO8YbT5J6Oj3XIB5zs5ZoU1c,3643
48
48
  biotite/database/rcsb/__init__.py,sha256=qb0x-Z4npqOyGi5nY5A-66xXb7woPSy1M2d_jVadRj4,343
49
- biotite/database/rcsb/download.py,sha256=aZkP5KrrEChhhZgOv-PKnAiVmfbVBxRTI-lJrRLutL8,5949
49
+ biotite/database/rcsb/download.py,sha256=ZlbYbAvCsri4NnpDvaLeCSTJUSlz6etQOExd_301rN0,6163
50
50
  biotite/database/rcsb/query.py,sha256=CzV9YOujbyjmIv-2OuLVJN3iHC4WiOAaNcZfnPC7muc,34023
51
51
  biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
52
52
  biotite/database/uniprot/check.py,sha256=wmxqqAV9NkEHlC4st4uP9yqhrjJ26uFQfuJM1ItFqIk,1278
@@ -54,9 +54,9 @@ biotite/database/uniprot/download.py,sha256=MGxeS3DwSIn8WUur1-hOFEKgr4tgKZLmDdTc
54
54
  biotite/database/uniprot/query.py,sha256=283jqn5qr_Lfsi5oUQ-LkK5Cutauy8kDih26rZdkEzg,7099
55
55
  biotite/sequence/__init__.py,sha256=K2I_Ds-pEmY25pEbzrIKCUMt9De2pPOG-hoMfsxn8nQ,3106
56
56
  biotite/sequence/alphabet.py,sha256=-f1p9hVGEgFbjawce2J3Ybug5VY2hkZiN3gPujeYStU,18350
57
- biotite/sequence/annotation.py,sha256=fuhMCjQ_MBkVyTyx4nU_VaGRgVr-u448KZ2G8Q_CVgY,30615
58
- biotite/sequence/codec.c,sha256=IkMFhc1_7z_oLkM8sCUsWaQbPRftOGMJdu7H4YrIwUA,1528750
59
- biotite/sequence/codec.cp310-win_amd64.pyd,sha256=wgB0Kc9Olzapd9pLrDJMNGC0J3O59WMAqulrfCCuReY,240128
57
+ biotite/sequence/annotation.py,sha256=U1-vAsQvF02eazhEE0qqujBSkTv1_jiPrjSkoU8LY88,30575
58
+ biotite/sequence/codec.c,sha256=LHBLZOW1dRLTy8memGu5ZHSOztUtHd8EX0sq_A9iEfo,1529118
59
+ biotite/sequence/codec.cp310-win_amd64.pyd,sha256=pDZ_YFks354WG77p3_rJOCh_9lsmMcFmpBSSChqxIoA,240640
60
60
  biotite/sequence/codon.py,sha256=g3CfUkCbzm0kwDf0jsQdOk0RBKU9B4HvJEq5bCqTvRc,16921
61
61
  biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
62
62
  biotite/sequence/profile.py,sha256=a455N4r1ua9e5tDZIp8u014ELxZE-Sxw_IUeCuqjgrQ,17269
@@ -65,33 +65,33 @@ biotite/sequence/seqtypes.py,sha256=NjBXwpTer2PhcEwngpWBYwYwR6yj3N_7JTILIoG3UNM,
65
65
  biotite/sequence/sequence.py,sha256=aRA8oHwWt8xyC8mHD0vPNpbYJiihyanD1hkUl9-qrfo,12285
66
66
  biotite/sequence/align/__init__.py,sha256=0nXg-din6JaXqPAZsv9yf0F7YICjNsXTc4erZotaF10,1752
67
67
  biotite/sequence/align/alignment.py,sha256=IiD_v_N10M3xRn2Xn5BdPT3E7dRIS7Qsne0WQUWWRks,21995
68
- biotite/sequence/align/banded.c,sha256=IqgviwG7dV5ZZW2jDfbRqB7mEVXSPl_fV9AsOyaFQnU,2578114
69
- biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=nzHUVH-M1ZaMFLBEdlNI_hoe2wowrruEJXrjMg9ePT4,489472
68
+ biotite/sequence/align/banded.c,sha256=TV_JaielQcl9bfDwpw65UK61rAeI5E_3qn7gdU_WqvA,2578665
69
+ biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=-aeg65CxQ6Utfn6Od-hQexeU3oSLAX5Q18RNQmkSox0,489472
70
70
  biotite/sequence/align/buckets.py,sha256=smW_ioFzL_tkc1ybfzbmLVujgEBFeESCZSXc4Fx9KIs,2490
71
- biotite/sequence/align/cigar.py,sha256=jx5Str7TTIfRPZwvIk-JLE8_cueVMoobokAweq5TUv4,13303
72
- biotite/sequence/align/kmeralphabet.c,sha256=yvdcwC6Wkl-_teXAqccdgP0DdKqsa1PqEQhNIMjDlio,1912736
73
- biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd,sha256=Mw85yemIPLzzWA14S3JOSyctMOYkRxnrjgwWO4zd7AM,307712
74
- biotite/sequence/align/kmersimilarity.c,sha256=PWhyJyZUllN50bUZBxmEA8rVdSovWpoqMyXNAiAIXpI,1252551
75
- biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=OyMA0i_r-gxMuMOwWqke4S5nXeHuCHLOeCQN5XQnGvQ,172032
76
- biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=FzfETSttWcEXjb070XM7PmAW6srHv-8P-h7GtDt5uzc,597504
77
- biotite/sequence/align/kmertable.cpp,sha256=1ghBLD6H5GCNbw9mlo6M1CI8DxDRCRlyoLU_qp2vRb8,3030047
78
- biotite/sequence/align/localgapped.c,sha256=w8zCpCmlUYoecOxyG7ImtmUbdaTHMuWRKdNjFYzo81M,4599176
79
- biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=Qio6XPBsfYTBUc_miz4fDz8hKLJO7SFDL4cdLyssvIE,987648
80
- biotite/sequence/align/localungapped.c,sha256=qgAbrwvmWq4dyZwkuP3UwN07mhzMK9Skpv2ownN5GLs,1605603
81
- biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=_z6GURbP86pmBQkQ4ln_bDpPgm_e1zRDav0_AjopvWY,253952
71
+ biotite/sequence/align/cigar.py,sha256=HNVubK3eESGrlYX40Ks80KHVIniKxhLofsts5PVcgJg,15080
72
+ biotite/sequence/align/kmeralphabet.c,sha256=7izlD8MlQjdWo2jmsA2H0MnpL2G8YlJ19X73PDvmwS0,1912880
73
+ biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd,sha256=k951Ba7kEbTXo72VmHbfHd5hDr5v6AftKE-A4ImQJTc,307712
74
+ biotite/sequence/align/kmersimilarity.c,sha256=2tXhAz63o1RIVuSVvTGlHCk9dLECUXkGwEKVUIiKB-o,1252717
75
+ biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=-BJKCYtkfF82N-c8ocNIPAfgPea-r3QfKolkNaYKBcM,172032
76
+ biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=c3kchSGLmxEKqq7LCx959W_6Nwb5uUzgwpi6Uh9_-L0,597504
77
+ biotite/sequence/align/kmertable.cpp,sha256=bZVPT5Jq7FeaxQ2gzKYDRBtLuIKzqJCtEh8PGuDnqDo,3030299
78
+ biotite/sequence/align/localgapped.c,sha256=RkTOtKSJ63121eJIjVi99el5PxZtubZVhnjIDIT_TPQ,4599727
79
+ biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=Bw1ZlUKJAwmT-AswXHvfNBS2tWt-2bj2kO-rqedYClk,987648
80
+ biotite/sequence/align/localungapped.c,sha256=Ow-G4kV8pg5GVwaQ3cBObDBifj7HKx7CCXjw4fH5Uvs,1605971
81
+ biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=5nKsBf7zWou3dNYotAMWg1dI2RmDsP_FYm6wiZOKdVA,253952
82
82
  biotite/sequence/align/matrix.py,sha256=LAh-OYS5Lsp_P9M-Zk31785Dz2LVb8C6mJr5P6mBY9o,13692
83
- biotite/sequence/align/multiple.c,sha256=lVbAoDCLquTrsXVDrUYAz8osJUvnnVTRS5gA5qmwr1s,2274600
84
- biotite/sequence/align/multiple.cp310-win_amd64.pyd,sha256=eF7jf_fOLUaAKNsZw3nGobTdJ1awdPKVenzBrcVR3Xc,404480
85
- biotite/sequence/align/pairwise.c,sha256=zYqgVS0s_Gttbouh-QQkxl2fAbbYAv88ZVDx3LXE2dc,2882054
86
- biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=poVNrLDLZNZghfbSXMM5M_cu35Aoew29uBJ7tvr82qE,533504
87
- biotite/sequence/align/permutation.c,sha256=uAey4CltiCukm2j3sjhywgucZjOUPjoue_990VDJbPQ,1278724
88
- biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=lKYP3LZU_FJuRe7wDf7AYLSFiYrMzdmXev4h0-9H6fA,180224
83
+ biotite/sequence/align/multiple.c,sha256=OgT9PbtR2uG_1xjBgaTrdyL-bUwWy3ASXwYApzy65tg,2275188
84
+ biotite/sequence/align/multiple.cp310-win_amd64.pyd,sha256=og0xqMaWSdICgh8Ddp6pRhbdQHKEQ8Qb8c118NlSbfE,404480
85
+ biotite/sequence/align/pairwise.c,sha256=G4714JfJCcqTbGhxKIT6AYB9hWYTgZiTRd6iU7psY00,2882781
86
+ biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=AzSjwgkbiYxfPQol2DGPjg_Jg4SYDc2Zf3Yc8CAkzv8,533504
87
+ biotite/sequence/align/permutation.c,sha256=KzBfYAi3hDtOjDscYTWJFUrvPQmnbkYGi39hKJ0llUc,1278890
88
+ biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=7MiaQNTuvIs8N4It79oOmfL1uihfWSrU7goDg-xZaRQ,180224
89
89
  biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
90
- biotite/sequence/align/selector.c,sha256=AyCXPe2VPclsuGSmpejE6TCRr9W8FH7r_b0B3y4wKZs,1632565
91
- biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=l2IWhHkrKkOK1t0unNp9TxCzZyv5vk_In6H602bOgTo,253440
90
+ biotite/sequence/align/selector.c,sha256=9-PUCQbBq0bufsChu1FtWm6gL9bjNnZmc7wAQbVB-Wc,1632745
91
+ biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=pwi32sRz2SPeflbP61ef3Wi4rdSkpjYx8YoFufYjtV8,253440
92
92
  biotite/sequence/align/statistics.py,sha256=m8O15sp8ENnyM_PcJEmiTy0lJ9O9h9-Cw3FEIzQXpVY,9996
93
- biotite/sequence/align/tracetable.c,sha256=tjVLlQKWF5J5HDFXM20Dgx7pToOJbXfqrJETuxbMkso,1218822
94
- biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=QzFMPy6_M_GHHGsEI18JObopzlmq3on1kQ-wbXsHsh0,145408
93
+ biotite/sequence/align/tracetable.c,sha256=oXYaWtjlc0fLVN9mfzDp-N56auff64gve_0newqP9LQ,1219044
94
+ biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=mAEkt_I9KY5tzeIc1Wa1UKCt34yz4m_Cjuhdc-lIewQ,145408
95
95
  biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
96
96
  biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
97
97
  biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
@@ -210,7 +210,7 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
210
210
  biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
211
211
  biotite/sequence/io/general.py,sha256=OO-hwLh9Htg7zXGQLQQDCgf3mPdQrgJwBKp9ZryN7tA,6762
212
212
  biotite/sequence/io/fasta/__init__.py,sha256=D3tP3axh_WL7dlDEve8lsjTi_KFnJnbXIv8Uh8OurfU,740
213
- biotite/sequence/io/fasta/convert.py,sha256=9A1J5rbKWVuuS1eVwyxaE3q3VYHKkwVxuaJlpNi-Ow0,9720
213
+ biotite/sequence/io/fasta/convert.py,sha256=qDdCD_mC0RPe6-LIaioA_Px7Go64GYc3h1pWlu6RsoE,9706
214
214
  biotite/sequence/io/fasta/file.py,sha256=_N_XR60SA-MuK41p46VKtXXFY6oJ-QdRNmCb74otaW0,9714
215
215
  biotite/sequence/io/fastq/__init__.py,sha256=9gwrwPLZ-2-3AU-PIBKxJfs9DmB4I9mCMupeL8rIkec,605
216
216
  biotite/sequence/io/fastq/convert.py,sha256=HekmBDfG45Wp_eX5G61dE-9iwqYV-ox1qhT9CdgW-XM,3886
@@ -224,110 +224,116 @@ biotite/sequence/io/gff/__init__.py,sha256=8VlLeqLj707W2Df_2heO8GLRFr1w6VZZdZYC0
224
224
  biotite/sequence/io/gff/convert.py,sha256=2pQ15ZndbMd2zdlHu9wkbXJek8prcWWxWVNVtDvpVxc,4831
225
225
  biotite/sequence/io/gff/file.py,sha256=Vs6J_tFVsouke9Vfw4Gr84pVEnY2fZwAczzG9DXOWlg,16501
226
226
  biotite/sequence/phylo/__init__.py,sha256=aQFrdnlkwdrI-7JaU74puj3Jd9n8YOb8xBr_MWgRJqg,1295
227
- biotite/sequence/phylo/nj.c,sha256=zIZaFpNq2OOGjJhkQWEy5ju5HrABsSjDt1qQugKB1Ew,1221008
228
- biotite/sequence/phylo/nj.cp310-win_amd64.pyd,sha256=1WNtoHroMXipMGBOdmf5cefHU2oaw7wv0fF892qOPls,167936
229
- biotite/sequence/phylo/tree.c,sha256=BbptSctSLKAMDrT6E8VOlrcTwonbXixxMgMwMyMM6Bg,1216050
230
- biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=TonlzcXX0fbf9DrVpSqoUg7SYxHKZM8UUH5PI_mtLA0,208384
231
- biotite/sequence/phylo/upgma.c,sha256=PtCgu-9OFIbpzLN3wCoq3OdxdFV-nK5PO3iOsB3isEg,1168536
232
- biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=u7j54hcKfxLXwLG7HJpCjSOlULhar37r8lmonZTY0Ww,160256
233
- biotite/structure/__init__.py,sha256=be3CpUHUIzDLFCLWJxgfzqmy4PkjvMZx9evI1ORcRfI,5407
227
+ biotite/sequence/phylo/nj.c,sha256=OaIdzxptIk44P9wAqw67dNIAjyi2uO9TRDQCFXT53SQ,1221174
228
+ biotite/sequence/phylo/nj.cp310-win_amd64.pyd,sha256=iTQeKHI-C7NeTNVMt1SB85a5kgY71nVKIDiNdd3XJXI,167936
229
+ biotite/sequence/phylo/tree.c,sha256=654Jq8PjFc-5R5peg3N12ArZKqczG386exm-3WDYvho,1216278
230
+ biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=3BfbkNF960VQe7ejcXCePAjSCu6cIgr8HQbx5JQIzz0,208384
231
+ biotite/sequence/phylo/upgma.c,sha256=Jw7o-AWM1tUUAIU-wvNiCN-BTGqGXkNnc7SwhyiRK6A,1168702
232
+ biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=A_dyCwP0tyxIGPYD6wa-t0HoNn7JM7gl77z9KONGxpc,160256
233
+ biotite/structure/__init__.py,sha256=eKkz3PMZDOHo1Nq-kTXNjX-KuEDiRj9glRWC_qzj_Zw,5455
234
234
  biotite/structure/atoms.py,sha256=7sE_YceqnjoC0fxiIaOc9woujWdvIjb6Dfi2L8hG71I,49471
235
- biotite/structure/basepairs.py,sha256=RFm7xPsTR4Gex2_2bvGiHJHbeNX9cMrk6uymxwRt-us,51717
236
- biotite/structure/bonds.c,sha256=Qb08i7fr_TbgWbrXc0RzvBB_E_xeZYZLIShNfybuCUg,2539404
237
- biotite/structure/bonds.cp310-win_amd64.pyd,sha256=3T0oKwcMAwuVKahFE-vX7RrKGsCkhFFIeZlwygyToqI,468480
235
+ biotite/structure/basepairs.py,sha256=s6h7uSKmuiT6yRyVB1bBuH_xjoRnOSHaRuTgdC0BUbA,51563
236
+ biotite/structure/bonds.c,sha256=MKRGLR00DlqHpr3IX_mneZZiboWhdxItkOjG3LKeHuE,2552053
237
+ biotite/structure/bonds.cp310-win_amd64.pyd,sha256=MUzt1VoOPedAOu3CoYkin5RrJhheLK0RILLyugKZNxA,476160
238
238
  biotite/structure/box.py,sha256=5mt25oCUd_GG4j_TBRaT6w__IQGjg-sFYiw4h-Iw7nA,19333
239
- biotite/structure/celllist.c,sha256=uOACj8_FgELXkVinbxjCjX9Wj6svKVZ2CLbaB-s3jrs,1569443
240
- biotite/structure/celllist.cp310-win_amd64.pyd,sha256=ex0qrL57q77GyWD3UzdAJZX2VNm12eqGD9bilgkHBCg,250368
239
+ biotite/structure/celllist.c,sha256=IxREByxlMhSI3TeFbIdW5GPTi9Fe76ioHjN8qjOEbrU,1569623
240
+ biotite/structure/celllist.cp310-win_amd64.pyd,sha256=4VyM12o4xuRUwQWbKNVFCawFdMNXLXsTcq1bSDxJhao,250368
241
241
  biotite/structure/chains.py,sha256=fiAmT6J8BlfmdAtajOd_QVU0qriCwE7QPe4KsVxbXo8,9104
242
- biotite/structure/charges.c,sha256=fSQ9Pm132rY3eBbLCptBRMmMiQ08ENVB2fn8x0ZMQ8U,1413444
243
- biotite/structure/charges.cp310-win_amd64.pyd,sha256=zCm3g8--Ud8xFzzTTpDSMPQ0r8ihy39PrJ3NUBQ9PBk,213504
242
+ biotite/structure/charges.c,sha256=wcpAc6QZGUSLzY0rFj83m8g4eNJc5nnThHkjOpTZcAg,1410335
243
+ biotite/structure/charges.cp310-win_amd64.pyd,sha256=-8oLmy1l-gq1oIMoL40YCK-zoP6bos9PmM3uuaqY3LU,212992
244
244
  biotite/structure/compare.py,sha256=4OoYgAUNkMdC91-4lNMkdyV3xtp-QtIGxrzIwUVIUuA,9775
245
245
  biotite/structure/density.py,sha256=zhpce1XIsD0Q4D6Sxu1vbelhTyD1o7p1cxFD2Z0xf3s,4348
246
- biotite/structure/dotbracket.py,sha256=aaWreB2Iih7i_zCtQuySkG4dVFO8BkSHmlpWv7O2jtQ,7051
246
+ biotite/structure/dotbracket.py,sha256=oClMstfkjfkLo_mYghwiGOvOc1cqugPZMfEFUWX9A6c,7101
247
247
  biotite/structure/error.py,sha256=nr7GT-wS7_lHE9Ls4PGp_6rUYwlHNYo31L7zEkPYj2k,805
248
- biotite/structure/filter.py,sha256=ujKSgbvRxCwII-EoPbBfRlgNKed2N_c3HJZPFFEbBdk,19599
248
+ biotite/structure/filter.py,sha256=fy_G_XPvp98xKumeAb_GvRGUcTS9iYXINu7IMFMqBtw,19301
249
249
  biotite/structure/geometry.py,sha256=u4nizcSsSSTAVV2NJ6zt_VcGYcvRsp_OGp87JAP-dek,25953
250
250
  biotite/structure/hbond.py,sha256=K3YM_-ixIxULSrCNLBfXvsda163uh7ToHFOB70If7eg,15571
251
- biotite/structure/integrity.py,sha256=D-uAKvCMQDqairRbXP2hMToSDI25WJnwIME1iLdxyFQ,10380
251
+ biotite/structure/integrity.py,sha256=BjNgMY8XBpJCEZU0jM9865HVcgIJQk_HxHvf9MKRT5Q,8877
252
252
  biotite/structure/mechanics.py,sha256=LdwNnVXvDEwxqHT0U7uZ6QHU0PijDgGeN7EYY-ZXo8U,2776
253
- biotite/structure/molecules.py,sha256=VfOLKuZtC2m1RCpaggIW5Ffii9aWs7TekDxKZzboAYI,15868
253
+ biotite/structure/molecules.py,sha256=hLcPcRLGsXTgX-EZEG87KBuZ5r90eEzwS0yDFnRHbjc,15831
254
254
  biotite/structure/pseudoknots.py,sha256=xYVjdVHbSt_8-ivTXlv0d1ZvECAMpzt01n8VELA-xCg,23022
255
255
  biotite/structure/rdf.py,sha256=lVmDv56xmpaZdmyBNtnN4TxtyNGMKq9yKxdBmlb71Sk,8302
256
+ biotite/structure/repair.py,sha256=kFI6NZ4HheXofPWN6_6GJPq-zo82GVruvhDK3SiH9Q0,7988
256
257
  biotite/structure/residues.py,sha256=TQlKuP9ZQ2ifevoFDWp5wKQju69Zu5oCPicW0oq-dnw,22932
257
258
  biotite/structure/resutil.py,sha256=9qz2bD0Grdm5LXiwDw7ElwGzPAfKJ_tnpcgyby9HozU,5780
258
- biotite/structure/sasa.c,sha256=TZ0GcxOqmgwDg50qUWOBTssYyZl-0lYFMDmdIlnQ4uQ,1322189
259
- biotite/structure/sasa.cp310-win_amd64.pyd,sha256=jacKhtVtyzJa8WKSpKLkaWKZP4PdziS_sYJArZrCVBg,187392
259
+ biotite/structure/sasa.c,sha256=TU_jVDjUsbQtXzH-h72lxwFCt6WztHEiD1gDg9zcAco,1322355
260
+ biotite/structure/sasa.cp310-win_amd64.pyd,sha256=vyzUXH_t1l524DTx6tXTQJqFyR6LVcJ44tGscSVNpnE,187392
261
+ biotite/structure/sequence.py,sha256=JLrxZ4Gl1GND-Z-tP2lxRRUYfzPAw0onHqTXsmf6KyM,4263
260
262
  biotite/structure/sse.py,sha256=u0i-m0-FTlk0Oi74rj84g1dYNmgvVhW3uTuDHr9ubnI,12289
261
- biotite/structure/superimpose.py,sha256=I8g0wURABDpJB_JPj0Elw0QTRghPMriStDQkzelMW0w,7854
263
+ biotite/structure/superimpose.py,sha256=xskOEf8aJvfRDIQ-QF_BbDb0_Y5j6We9Q0_0TuRE-3k,26879
262
264
  biotite/structure/transform.py,sha256=DP_qp4uFgiNpL7OjojTl70rCXm1jHm8gs9ao51xnzU4,20270
263
265
  biotite/structure/util.py,sha256=T1yhapfWJIMMsrkjOxBMu8aJTxNkJeZ7ttHo_XJBtTg,2356
264
266
  biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
265
267
  biotite/structure/graphics/atoms.py,sha256=kgLdRfwOxsZCJ4PQCxiJC6cV-wSJ6qUSwvW4soTOhEo,8396
266
268
  biotite/structure/graphics/rna.py,sha256=-2mqW6n8tD3VEGiAhjXDMWNed0kLOO5-2EGdwwrmVKE,12169
267
- biotite/structure/info/__init__.py,sha256=vPF1ebcE3t61Ue3c0gzaClT3Jk1usJVpmNQmNa-M6u8,857
268
- biotite/structure/info/amino_acids.json,sha256=CsYGRuUSbVMhAnox2fm9IW_wpeAN2yhUzHy3qKk3Bxk,13988
269
- biotite/structure/info/amino_acids.py,sha256=_JtRhCj5sEsCPeNDhTfBVZU2sifoGTxjY0ZV5C-MecA,1488
269
+ biotite/structure/info/__init__.py,sha256=zIRFQGmBG-XWfuID8Xr2vp6o70DdbdH1x8QXMn78MUY,727
270
270
  biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
271
- biotite/structure/info/atoms.py,sha256=-EFy8W3CxJPHFAS1PPvCIcBKD4Ak_SYST2huBdhD1sw,3608
272
- biotite/structure/info/bonds.py,sha256=RxqDlZ_hJ5zRUCj6FeeGUaczJkDoibo1os0kadj7gGc,6287
273
- biotite/structure/info/carbohydrates.json,sha256=kc6-oNoMKzoagwbOJDyeF0cN-HGB7twhXGrCFQmramY,10083
274
- biotite/structure/info/carbohydrates.py,sha256=fh2oeRw9ZBg-9jWDhgs2HAetOH6umwKofxH2xFU3y5E,1287
275
- biotite/structure/info/intra_bonds.msgpack,sha256=gdf7MGumNkEg6ToZnyI2_zL6z6gLVyi6k0kP5eFaDIo,16338340
276
- biotite/structure/info/link_types.msgpack,sha256=EO5H3hQFNuLs1tHft9zZf3HpN0-3O_XM3QA3HIY73PA,582272
277
- biotite/structure/info/masses.py,sha256=IRjIZq5ZuKLVhYY03unnddBVJNx5-dV0jIoU_V9lFIM,4667
278
- biotite/structure/info/misc.py,sha256=EL7O3X8oO2Feyf2KC2QAlygJ7CC00tJJJMputgmr2Is,2263
279
- biotite/structure/info/nucleotides.json,sha256=tti1czJAZAAAeKISHWNKwhg42kAZhf9vzWjLdf8BpNg,6875
280
- biotite/structure/info/nucleotides.py,sha256=m4Ak-CEvgQLot7A7TMDlw8phwnheHhvZUWmMuzw5CpU,1313
271
+ biotite/structure/info/atoms.py,sha256=ScWweOXKeLhbOPtxVSYTT4ySfQG6ESAWd-7sOTpLQb0,2650
272
+ biotite/structure/info/bonds.py,sha256=c-DyaOIkcB-DMpeNEBb1uksnjbURs9Du4y-EDwA227Y,4796
273
+ biotite/structure/info/ccd.py,sha256=FF0pWqKIto3PY7WPbLMHFFi7XgXCyi0GE7LVx-OZz1A,2848
274
+ biotite/structure/info/groups.py,sha256=yqKbbEJNRxaN41KVfUBvulPO2yu8nE35Qq08SUGvYko,2132
275
+ biotite/structure/info/masses.py,sha256=C_eb9HxNP43bVarwW4MgeUSUln-sYSdjyIK2qa8E3u4,4611
276
+ biotite/structure/info/misc.py,sha256=rdYyT2gkRDg7OeB8RAvvB2YYpoHUUmTa-8unqGvCPog,3634
281
277
  biotite/structure/info/radii.py,sha256=bVCi_3TMz54uJTupgcxpPuqSYzLuT76da3V63v8dLRc,5844
282
- biotite/structure/info/residue_masses.msgpack,sha256=KDZ4r82AcecK_CCD64bEnTZK3rur5Jq_fSBaiB3rB1M,459118
283
- biotite/structure/info/residue_names.msgpack,sha256=p8uLuHBVko6pbq-GDjqLIZMtc7_XEY1NUFZQt4YL-yA,2952002
284
- biotite/structure/info/residues.msgpack,sha256=yt9Nd0G3mnTorAfrNHAz34ZhgsvGwGWYRgG81Y3nuv4,73230917
285
- biotite/structure/info/standardize.py,sha256=SFvPJnwsLR5-DuEzaahbp8_n_MO72OxexizG3kpyW9c,7763
286
- biotite/structure/io/__init__.py,sha256=IfGhY7fMriL1we3yuHyJJnGSTaHzzEo00z4ioZVubKg,1152
287
- biotite/structure/io/ctab.py,sha256=KiptGOistCAU_Tc2y_mXyn1FrMvWQqHyQJzSk1YyKrI,5117
288
- biotite/structure/io/general.py,sha256=CN_8JV0kXpyyLGI4uZnJSxLVjpEtTbS2WWQ37VtslPw,9985
278
+ biotite/structure/info/standardize.py,sha256=nghv0HozXDVx4lMCcCEUue460kM2EH5_KWgVEt0atBI,7967
279
+ biotite/structure/info/ccd/README.rst,sha256=GeRC_rNZkw9mmGBjSwiy6pgyzzYZEPh0IX5pMIjCruQ,349
280
+ biotite/structure/info/ccd/amino_acids.txt,sha256=l1yE8BcddZ8aJtMhDr0wfn_zRHy-am39xuMm80DIsuA,8332
281
+ biotite/structure/info/ccd/carbohydrates.txt,sha256=R6WD5xRqmmiYAQp6QrdtlSBF6IBVC4BeMPPl5keEMeA,5679
282
+ biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
283
+ biotite/structure/info/ccd/nucleotides.txt,sha256=rVTN65IGs1rfwDzjdhiaIZQ3mCGg3WvllNPSUWCBsoY,3934
284
+ biotite/structure/io/__init__.py,sha256=CoLuj2rSeFcwWRkljmG0CLJmBpKAdTHukfch3E4Ws2c,1063
285
+ biotite/structure/io/ctab.py,sha256=crhK0a-E0aa9xPEERdMhLu3CXeBi092OXFuUUmm5HXw,2255
286
+ biotite/structure/io/general.py,sha256=1ZkkKcmzZdghIfbe2ogo5DvgeTeo9gkAreHoLcgfXwU,9322
289
287
  biotite/structure/io/trajfile.py,sha256=570HTBR-XEcWX5FpriC8ZzZR6JZCu8vRqm0nF6NZ1OQ,26403
290
288
  biotite/structure/io/dcd/__init__.py,sha256=KeW_mvWoyTypFEdhaRTU75U8OLXzH7RqIgw_DLCbjMw,399
291
289
  biotite/structure/io/dcd/file.py,sha256=G6uULpUtR8XtqrmWf348mU_svIqVn52LzaRFJks_qVM,2234
292
290
  biotite/structure/io/gro/__init__.py,sha256=5UHVgXmEtWHzeQSNUMlHVjstIGN4CxGvIkzibqmM-oQ,420
293
- biotite/structure/io/gro/file.py,sha256=Ge_IpcfHsX5KPp14MTRaOFfp5ma1QbP0TTl0y61bLU8,13290
294
- biotite/structure/io/mmtf/__init__.py,sha256=zNk9n5PEhIpdGKlkF-tyL0dZGO0_87OW4n5fAPsg0f4,604
291
+ biotite/structure/io/gro/file.py,sha256=coW8u4r2e4XCYyMdaV5aMQIgmKf7Eupze_zqT9OoKS4,13142
292
+ biotite/structure/io/mmtf/__init__.py,sha256=bRfwruWJD422YBveXTEtIpTaE1acKhXVjkLyNyd77f8,682
295
293
  biotite/structure/io/mmtf/assembly.py,sha256=_BpiIKC2GcMKK8TnIsqau2x6h7L1NZm6O4IvIq0wqIs,8397
296
- biotite/structure/io/mmtf/convertarray.c,sha256=p6MD71BQodyEym34Tf2ZDMcZ5Uq_S5JGsEihctgAIfw,669584
297
- biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd,sha256=gTX9CrHRNJCSvPTPONnZRaRd6OyeGcW8nJER5b8lYQ4,104960
298
- biotite/structure/io/mmtf/convertfile.c,sha256=F-YGTlcfmsopQPr7Vro7RvaxznY4tDjDWAnngfkewQE,1548740
299
- biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd,sha256=zZTo-34l3XA5YvAAzTCy27w6BiUQiU5Ev_AgI6pg_88,240640
300
- biotite/structure/io/mmtf/decode.c,sha256=cTEASzwND4A8dWsDYUQXQL7NttpLB4AG0D9tuodUok8,1379362
301
- biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd,sha256=rtBh85eboFGg4J-suiu0Fu40rG2GBehfbgCta3SIlaI,202752
302
- biotite/structure/io/mmtf/encode.c,sha256=h-AjrQEuzCb_MTgKl6xssnsGb3PmOU3o8hqoqclSLq0,1327278
303
- biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd,sha256=bNQ2c4ynO-UCkImRdAfeKn4TSRBfqvR5j39r_5kHTOA,185856
304
- biotite/structure/io/mmtf/file.py,sha256=uVjB_iQKnpsN0EDTqHISX46zqiFPc6ICsbRtF2xbmvk,7079
305
- biotite/structure/io/mol/__init__.py,sha256=7m5o5KHBQUtCJ_9mvnnOMolrZIfuELC26kCpDGCV39U,558
306
- biotite/structure/io/mol/convert.py,sha256=G9kP3oc-l-wEPa32xHNlkGqd_BLMMkhR2d6PEVbISgQ,1356
307
- biotite/structure/io/mol/file.py,sha256=MeOpIx_FvbviHNtpaC2Wm6OVFZvjlgsM646fyn5HkVI,7594
294
+ biotite/structure/io/mmtf/convertarray.c,sha256=YJwzn3JvCEAgV9Rqv4W5mkTVSX3-oRtFtOCqS4wTHSc,669776
295
+ biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd,sha256=ucn-lo_1b1w5K9BsTiZi7uIocoC9N1k9XUa1dx8RpKw,104960
296
+ biotite/structure/io/mmtf/convertfile.c,sha256=G615skQjlASZT0si1jD4C6B9IHprUx8fDjUc_Kf4DlU,1548920
297
+ biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd,sha256=XRrtk01JJKoyNqAn_wyUYx7k9kEqDKrkUHkKEO58iaI,240640
298
+ biotite/structure/io/mmtf/decode.c,sha256=reijpg_eZz-eNldqIAVgIhsCfTB4ask3F0-FOXxB0Z8,1379620
299
+ biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd,sha256=LTHFHTbU1RCWXUM8vvKoN53U9veOlrTC0NOt_yWuMdo,202752
300
+ biotite/structure/io/mmtf/encode.c,sha256=elQYNYc7X9wW9j0DEJs3yEfC3p3p369mv90X7KVPZS8,1327444
301
+ biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd,sha256=SmuH1DU0UWOOGkWLIXq9Kiyk7UPeke_-NuzfrVe8PCc,185856
302
+ biotite/structure/io/mmtf/file.py,sha256=hma7f6zGB317-UEAnD7oYKCszMUInM6NyRzsYMvGuiI,7179
303
+ biotite/structure/io/mol/__init__.py,sha256=JvYPvpyywjkpRzQZbu-6VfJNVrcLfwqOlKxx1cVgU-M,600
304
+ biotite/structure/io/mol/convert.py,sha256=mUflED5yKZZp5iczGOdi1AS17wXdgVhogZzuRdnW-1w,3895
305
+ biotite/structure/io/mol/ctab.py,sha256=HskYb61-lATyf-sdyjWQ0EqTEA1fkhc4qGeCxwSfnwA,13945
306
+ biotite/structure/io/mol/header.py,sha256=5gyk5bnsQZSNASmVOIVq7Ww8wM_qxhCy82aqAn_G4vE,3496
307
+ biotite/structure/io/mol/mol.py,sha256=b7mR7ErSqGy18RhlS-Bpbq_BfFbPjNWpdq8M1h-xmUU,6486
308
+ biotite/structure/io/mol/sdf.py,sha256=oSYybQE06MUGn1_J-bf0ArIp5_unKyzU75i1OUbin1c,32914
308
309
  biotite/structure/io/netcdf/__init__.py,sha256=NqC3zLxcG9RVgTx06j-YTH_exKCsNcUidhtfM76r9Ho,361
309
310
  biotite/structure/io/netcdf/file.py,sha256=TrLCr6NK07eoCh39Z92KDBZVDEvyH04lBy9zQasNI8A,2218
310
- biotite/structure/io/npz/__init__.py,sha256=1eNHv8g-OWD-ETWzH0aLhYZvYhSZ8xn21IoB6y6Mzpw,653
311
- biotite/structure/io/npz/file.py,sha256=UU8Nuyy0UlKqXYurPoXjF9qDkPWovV0R2nw3ZRNuVJU,5112
312
- biotite/structure/io/pdb/__init__.py,sha256=eL3-PMdgmfVwH_j9aCRKiZfnvCp-eAxvAa8CWfej8hA,741
311
+ biotite/structure/io/npz/__init__.py,sha256=WclJwCoaeptFUcLCwhxyNSkwyBnmQ0L2Ioy6iyQYAPU,755
312
+ biotite/structure/io/npz/file.py,sha256=ITh50YvN9ySt06fVjmzjimz7BGTlzw7ySeY8QLeQimE,5109
313
+ biotite/structure/io/pdb/__init__.py,sha256=OqfxRonPcLc4F109ZmAeIFE7R6v7OgeanhMAz6orsvc,751
313
314
  biotite/structure/io/pdb/convert.py,sha256=C9o5UNr0UABYN32szyFBSHJK5wGCloK70aauMo5bCPA,10951
314
- biotite/structure/io/pdb/file.py,sha256=LHoGdHLwVhqqWObfAk0ZvGOLrioUZAtZ2D4zI10MYy8,47160
315
- biotite/structure/io/pdb/hybrid36.c,sha256=wmNhgEyVIBL2fzz7UnZOV9aDaKug-1JJu5dzOZhUftc,1110788
316
- biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd,sha256=DuzAu_baDAjNN7BJ2IvrddWANRze-8rYs-SmT4npRlw,147456
315
+ biotite/structure/io/pdb/file.py,sha256=l4iwz3FywAYrHMwuPIm1n2-mOMCDVptgE7d-4DivQig,49242
316
+ biotite/structure/io/pdb/hybrid36.c,sha256=yw8r2oBNNEMROcjaxNltVl_ToNMAEHy9_Y4ksV0NtaY,1110900
317
+ biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd,sha256=WFx3lqCXnPEJtAnEQDOz50N-Nc9_wW6Q2PUzJLcfLFI,147456
317
318
  biotite/structure/io/pdbqt/__init__.py,sha256=_e0Cyo-9kxX__O47RJwLJrylIWfAOiqqX-eVZ6w5RpQ,454
318
319
  biotite/structure/io/pdbqt/convert.py,sha256=8DEo4oOhp5MXqXXr3EWHnKD4y4zI6kqZ-Fjv19g6IjI,4133
319
- biotite/structure/io/pdbqt/file.py,sha256=sVH_s9YSdUjT8LVt2OEnlsd7aV6r0AX0ulZNCzAPdWQ,27038
320
- biotite/structure/io/pdbx/__init__.py,sha256=BGJOa8h0KuYXNBSNxOCSxHgOF25S4cLxfjBncuYsma4,609
321
- biotite/structure/io/pdbx/convert.py,sha256=6FL56pplfNbA8X6iB5gK4qLdaaa93MZ918Po3zYFLYw,43138
322
- biotite/structure/io/pdbx/file.py,sha256=4ptr91rSLFBZ5AEqGbVZwjOQButJY1dqaRLeSBFyLEI,24475
320
+ biotite/structure/io/pdbqt/file.py,sha256=okgs4zmpumCDkmrtQqbm6uCaM99J-cJlST1oNqGQqRY,27038
321
+ biotite/structure/io/pdbx/__init__.py,sha256=aEMr9p4gbeQQFeWgwohV0TBPOa77hFfdhk6pgjTola4,736
322
+ biotite/structure/io/pdbx/bcif.py,sha256=ds0XISbKBb1IDiNm215GW0Yfjlr9u8oA7oqvKQXFlig,21027
323
+ biotite/structure/io/pdbx/cif.py,sha256=_f93PMs269cwEwMszGlqtd4Ajy_wONW1TWdTV8ThLs0,33469
324
+ biotite/structure/io/pdbx/component.py,sha256=v_DJAM8VgDUgT7bQQdqrA7yn6vzU7fy_cQ9YljAvw4U,8389
325
+ biotite/structure/io/pdbx/convert.py,sha256=Pk89MknEXzAitzxYQdpwWSD4zz0IqOl3bFfu1xitGDU,61354
326
+ biotite/structure/io/pdbx/encoding.c,sha256=EzcjdXNswm1yeHO1EFetw_pa_YZiKdSs4UL2CML2JwE,4731168
327
+ biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd,sha256=_eg9wa4gqOcC5EAOdAsDpCKBNzeK7FZnHL6UvlFIQ7Y,976384
328
+ biotite/structure/io/pdbx/legacy.py,sha256=Nix6sAg5S4-hRsbRXltx2CIQJKa7B7TPnPEgFLm8XaE,9108
323
329
  biotite/structure/io/tng/__init__.py,sha256=3aQ_lcXAswoklT3IkbCK6yLKDMjBJwE7jU0ke0aNLmE,368
324
330
  biotite/structure/io/tng/file.py,sha256=MW861kpo8fRqd3GFHFuV0LALkP6Q8nPhQkuj-uz1gU0,1348
325
331
  biotite/structure/io/trr/__init__.py,sha256=ayqC8DyqjJ93VVytJEdmBHNcHTaIZOCfktzpBdxFFwU,370
326
332
  biotite/structure/io/trr/file.py,sha256=4rS9HNoXQXCauquOTbkUWeveq9LEy0CKBNgi_IMTL-s,1348
327
333
  biotite/structure/io/xtc/__init__.py,sha256=NHHFO6mTJCj3pfbP4saehOcKXrYr9CxVMSuJVb9QJHE,368
328
334
  biotite/structure/io/xtc/file.py,sha256=UQ-QF5leM2ujMPde8RFe3dNShHXjl8lJ0qWU77QkbCY,1344
329
- biotite-0.39.0.dist-info/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
330
- biotite-0.39.0.dist-info/METADATA,sha256=Bkpi3y2PMDrs0DCtqrC-BPGw9YN8CnStATb4l1XX1DU,7333
331
- biotite-0.39.0.dist-info/WHEEL,sha256=5JPYeYl5ZdvdSkrGS4u21mmpPzpFx42qrXOSIgWf4pg,102
332
- biotite-0.39.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
333
- biotite-0.39.0.dist-info/RECORD,,
335
+ biotite-0.41.0.dist-info/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
336
+ biotite-0.41.0.dist-info/METADATA,sha256=0LGUK1F2cL2-XIIPgWe4eINM6GkgaA3rUggBNeh2MZQ,7340
337
+ biotite-0.41.0.dist-info/WHEEL,sha256=lO6CqtLHCAi38X3Es1a4R1lAjZFvN010IMRCFo2S7Mc,102
338
+ biotite-0.41.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
339
+ biotite-0.41.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-win_amd64
5
5