biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.41.0__cp311-cp311-macosx_11_0_arm64.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.cpython-311-darwin.so +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
  14. biotite/sequence/align/kmertable.cpp +233 -205
  15. biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cpython-311-darwin.so +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cpython-311-darwin.so +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.cpython-311-darwin.so +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cpython-311-darwin.so +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cpython-311-darwin.so +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.cpython-311-darwin.so +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cpython-311-darwin.so +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.cpython-311-darwin.so +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.cpython-311-darwin.so +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.cpython-311-darwin.so +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,12 +1,12 @@
1
- biotite-0.39.0.dist-info/RECORD,,
2
- biotite-0.39.0.dist-info/WHEEL,sha256=qZ5gUYMG4t2JcLLcFLlOXld9g3WjqyANneXZkxLH8gU,110
3
- biotite-0.39.0.dist-info/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
4
- biotite-0.39.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
5
- biotite-0.39.0.dist-info/METADATA,sha256=-UBZ0t86SDwoIaX7_yt2-k1inbPtiKoesN0gFDVLfUg,7145
1
+ biotite-0.41.0.dist-info/RECORD,,
2
+ biotite-0.41.0.dist-info/WHEEL,sha256=sieEctgmsyAnWfDYOiunmkigyyjGmYuUaApm_YItwoI,110
3
+ biotite-0.41.0.dist-info/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
4
+ biotite-0.41.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
5
+ biotite-0.41.0.dist-info/METADATA,sha256=aDKbtvmKoRovoSXYPhKN_VjcLFM8XkfPSmqKV0X9zQ4,7152
6
6
  biotite/copyable.py,sha256=Rmsso_e9quxWc23SBQh2M45jTT36SerwSmt3ONng04M,1972
7
- biotite/__init__.py,sha256=klQIUDyC3zcaYzVSTUd5vQaB-eMx5WDCoEu4fdrvLzg,524
7
+ biotite/__init__.py,sha256=O2aZEDRPWHZaO2ApwDuoh6i-zEjYXqKJBtp6zMqPg6s,522
8
8
  biotite/visualize.py,sha256=mLME6fOGwdcUZLUzDTbwUpZokC4D1cVE6ICdtJDc0yw,9842
9
- biotite/file.py,sha256=flQknYLaLSlbX38D8_I3fG9DAo4D3ExeoRzweMoZMno,7335
9
+ biotite/file.py,sha256=te0tI2Qdh9JQlwe_FgkyWIU6RG6WYgWNbAj3GF3wzh0,7429
10
10
  biotite/temp.py,sha256=AenIC7m3rrezikJDKgTEnLZigACubfsw_UcmYMGyGa8,2045
11
11
  biotite/database/error.py,sha256=oEJGj28R9VRkLt_DcsqNsf-rwHe3E2ma5uduzqAgZ1w,408
12
12
  biotite/database/__init__.py,sha256=_C25CsDE8O_770Vmk6sCK4FKlQ0A1hUhWaMRPOvkDtM,724
@@ -21,12 +21,12 @@ biotite/database/uniprot/query.py,sha256=bzJenXwN3iKLxwJT9uaB19LBam8GRYWfeBzS_Py
21
21
  biotite/database/uniprot/download.py,sha256=rWrgLrDCnItLe5fU3_oSZvYJToqWmqfffN5JvBumdyM,4378
22
22
  biotite/database/uniprot/__init__.py,sha256=Lsk5Jd-qb5167VTgN48lWSSbqpjCM-fD0XKJyxaZb7o,334
23
23
  biotite/database/pubchem/error.py,sha256=5kLtd9r3KkR9PZfTEfaRA5LRIG2K-XQKqiEBZZ0pd4g,711
24
- biotite/database/pubchem/query.py,sha256=odzR1G-psQnMAcWL97pj_xc9BH6sUlgru1vg4SD00Vc,26440
25
- biotite/database/pubchem/download.py,sha256=rio_-ykW1xAZhhWcd-U88NYrwcI1lsJNrG75PEuGRfc,10117
24
+ biotite/database/pubchem/query.py,sha256=PBXIMhxWxIsTZQDDsnConZbm3j7GZwYqgN_ldn9bZsk,26425
25
+ biotite/database/pubchem/download.py,sha256=gRNWiHlMMWWCDBjgsAmtvygkM3Agc8yQeuwV2VKeJtQ,9997
26
26
  biotite/database/pubchem/__init__.py,sha256=Lnk0h85FzSFBu6KAG3P5ssbGfXE2lX-EMYXWCafPF0o,668
27
27
  biotite/database/pubchem/throttle.py,sha256=RzMFaBKJVWygH2QlLQEFO_EBcN7nGxj6Sq-sAB7njvY,3534
28
28
  biotite/database/rcsb/query.py,sha256=I5eAsdsW8FT-O0cKz_71dpS-HrEe0VtauliAPQMPBSo,33065
29
- biotite/database/rcsb/download.py,sha256=LcuB7UnjGyra6ERPrljnrNoWxfp15ZyD7SIiQ6FBQTg,5787
29
+ biotite/database/rcsb/download.py,sha256=A34iNIVufjUu1b21hj3jhcxIlXmUWDLt5I5jCMBOW1I,5996
30
30
  biotite/database/rcsb/__init__.py,sha256=D0aWxH2qmDycBBNtSUUQQHusOYxS1sf_4P4rJI85kyU,331
31
31
  biotite/application/util.py,sha256=KmvdyozUayuvlmGZ2QYkXeJCkqayvEmpQJDSXPL8I7w,2104
32
32
  biotite/application/localapp.py,sha256=RA6MVIn5lSOhfv62H1QP6ymkiiMvzjK3swb9JSY6xAs,9450
@@ -35,7 +35,7 @@ biotite/application/__init__.py,sha256=ZsDk_A34W4W1jrA2zlHWhXXqe2uBKQVWDMa58d0IZ
35
35
  biotite/application/application.py,sha256=6-UfFW1ssAeU6Xfd17ovjOREoa6owFIYWWDDIHVNUgE,8129
36
36
  biotite/application/msaapp.py,sha256=tAXy8OKqHProreN4zDgNGcFFC7vFGoK6YFgNLeD9QxA,12346
37
37
  biotite/application/dssp/__init__.py,sha256=CdRcAe_Uc_kGl_I0_Cn1Qk_4RsFn_n-u8SbLrklvYEM,322
38
- biotite/application/dssp/app.py,sha256=PLSsCMi2EuxygpDJu-_QPUj_xxg0Vr6W7mvu3K5glqw,4929
38
+ biotite/application/dssp/app.py,sha256=5l3ZKHHacp18w1L3tC1MImpfIWWyltQkV-cATlDmCvc,4828
39
39
  biotite/application/viennarna/rnaalifold.py,sha256=4petrddQWumjtUzWxjVKqategejEczthqkwMIjkPvDE,10556
40
40
  biotite/application/viennarna/util.py,sha256=mmfX6uJjJfPyc4lNx4FvbhIP2PFxVvjwxWQrEm9P7MQ,2675
41
41
  biotite/application/viennarna/__init__.py,sha256=m2obwXBnkDzRDzjrffsGdnp7YxAFz6CctsSmmg03xVI,473
@@ -57,9 +57,9 @@ biotite/application/clustalo/app.py,sha256=tPZFZ5SP1jCE1OQlTz7WzFOmdZ5B6JHTTjaCU
57
57
  biotite/application/muscle/app3.py,sha256=tm51pw2zuDcuua-an5eaD_oBGh_PBL8vdlGdfUkXLF4,8450
58
58
  biotite/application/muscle/__init__.py,sha256=UZFXceMzefsY6Y1CokOpWC2ZgWeiM8NiCHqEzLJDeQ8,337
59
59
  biotite/application/muscle/app5.py,sha256=9tbw6XISmu9CEvFPDxoXW72HnrpAPf0MZY4jH7F8jK0,4799
60
- biotite/sequence/codec.c,sha256=QrM72dDCqDH00bAn__w2ampUsACsU8BoKJfldxFeloA,1533733
61
- biotite/sequence/codec.cpython-311-darwin.so,sha256=-2dFomxdAn5tXMgx9pYg52rIhJM1WnIXAdgmzxMn0Qs,318808
62
- biotite/sequence/annotation.py,sha256=h8e1IJhmHXoqs8yw1Y6QwFLrGcb5XF8ewDkkxPhThXo,29786
60
+ biotite/sequence/codec.c,sha256=YQzeIu4GoRUZ_kvHl9QAarj-VzP-Z3lAUop7FB9xaLA,1534101
61
+ biotite/sequence/codec.cpython-311-darwin.so,sha256=yhF8NYfHKxvJatQwJlvHk05LdwHLq4B1inyhdO9YLrM,318824
62
+ biotite/sequence/annotation.py,sha256=ab49UyMA1StDMGL-67NG75FRYes4-1qM7RAqxYbPxeE,29746
63
63
  biotite/sequence/sequence.py,sha256=AbOf4a3ApXUBgflzYRux2nqpd6jDCXVAByUBkt9Jroo,11911
64
64
  biotite/sequence/profile.py,sha256=LkH-jcTmxOyWMmhTgjjF7ykmQ7KlKidAdGp3X5_Wm-4,16813
65
65
  biotite/sequence/codon_tables.txt,sha256=zZLT642H4qEkwUk5g-hWh-6ZWP_bgaz70fWcxwJDWJ0,10209
@@ -70,7 +70,7 @@ biotite/sequence/search.py,sha256=er8lqF2WM4rFG3gixxgEnJ8yNHiWae--02TjJCNRo1c,31
70
70
  biotite/sequence/alphabet.py,sha256=l4iggmKPNvfauKeRRGbJWmmrzkFldljxMBpFoRG8Uks,17785
71
71
  biotite/sequence/io/__init__.py,sha256=4K13uxFWe8IpNC8yuVxjDiI7-8lmXu7qT6iMmVSqPs4,314
72
72
  biotite/sequence/io/general.py,sha256=4HIIU6VNNfOLfVqAkg_mXzmNZZlOeJWzwsChu_dTVvc,6570
73
- biotite/sequence/io/fasta/convert.py,sha256=xNAq43nTSIpSVTOFbW1AwOvgQPZulvTmPD1eNWpyON8,9450
73
+ biotite/sequence/io/fasta/convert.py,sha256=saQmgRHqnhqqTmbSf3rn4_m6RcVulGEFeVK7g928rdI,9433
74
74
  biotite/sequence/io/fasta/__init__.py,sha256=rq4Pze3xj0Yj4bvh6BgNe-ZVO4yTfchpDOtlz-EGzmo,719
75
75
  biotite/sequence/io/fasta/file.py,sha256=JYTeHugajnSJ9lwSwcVgsBBEei9pf9S4LWZrM2VH0Vs,9437
76
76
  biotite/sequence/io/gff/convert.py,sha256=BnAMkQl7mVO6b2vupznhDyd5-tpbhYKstCRMmhlEmOM,4699
@@ -84,35 +84,35 @@ biotite/sequence/io/genbank/file.py,sha256=lY5LPFJU7q1mGWkE_iF8XQgBzkY_3aOFCxI9n
84
84
  biotite/sequence/io/fastq/convert.py,sha256=eluwgaDZggVNaBmyNWYioxsvcajJfqWTqTU12BP__yo,3767
85
85
  biotite/sequence/io/fastq/__init__.py,sha256=B_X3WAWxlHkYWJAO7Aeb22RWtsx79y7s6TnmcIP4IGQ,587
86
86
  biotite/sequence/io/fastq/file.py,sha256=a_tk-RyqcJn0ioRe68V6ET3g8if3i5L_Dg0HAjrLw14,19115
87
- biotite/sequence/align/selector.cpython-311-darwin.so,sha256=zfWE31B9_sD9cQ-R8hGYdtF-S8QFrC9jzIjhIIC7Mnk,343755
88
- biotite/sequence/align/banded.c,sha256=WRyXBdiBUodWMNLmP6_zqeMnuo5H2i1CGCqhB3DO0Cw,2583092
89
- biotite/sequence/align/localungapped.c,sha256=DrZ_EKcsXbpbel7Kzlp4edNNQOvsDbJbiPosviyUddg,1610581
87
+ biotite/sequence/align/selector.cpython-311-darwin.so,sha256=tJtIVqDXU-ldjckd8vvizET3UNAodA8loH6By8P9Rao,343755
88
+ biotite/sequence/align/banded.c,sha256=Lsz_VwAUp9_bXRwXwKt3HAx0LiZZbv_G-jXD8r2nXlY,2583643
89
+ biotite/sequence/align/localungapped.c,sha256=eDnyg6zjOmj430UwvViT3hXlsND29BWNM0pOqNutOzo,1610949
90
90
  biotite/sequence/align/matrix.py,sha256=fYfhqeuMZJEYJsaTFgbRLnu3BBFx97UANfIhGxHT7l0,13287
91
- biotite/sequence/align/kmeralphabet.cpython-311-darwin.so,sha256=arBsBNpD2iHJ_hJttqMY84ltNTB3A3LS8v8Ht7foiws,397023
91
+ biotite/sequence/align/kmeralphabet.cpython-311-darwin.so,sha256=eJHvL78RiVuIrbDrTXpfyaEqRVKqCrZvopdlBi8hiAs,397023
92
92
  biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
93
- biotite/sequence/align/localgapped.c,sha256=bXTENNuSHjYJkBR3ohKqM7IpeByU5JoZ5hbtV1ZTUTE,4604154
94
- biotite/sequence/align/kmertable.cpython-311-darwin.so,sha256=uJvMPDAbHqoQUpr_XCvH8iNicFZePh_atVugKlXrjbc,751948
93
+ biotite/sequence/align/localgapped.c,sha256=0RfmAnzGcndtfCihqBsVWQeHdOLBzPtH0oxcu-9_plE,4604705
94
+ biotite/sequence/align/kmertable.cpython-311-darwin.so,sha256=Q_ceSW_PZamFPT1YJ7BY3Co-wSyd6QyJTO1uDhR1pLc,751948
95
95
  biotite/sequence/align/alignment.py,sha256=MF_3R2MMjuwwvG7j4pybQjdPCTk2fAwg_4gW-muzKfA,21338
96
- biotite/sequence/align/kmersimilarity.c,sha256=fPdbwP0yxsjQb-_Hfj1BQwbotyGydQNibbOJDKVZ8w0,1257529
97
- biotite/sequence/align/kmertable.cpp,sha256=xoeIh3lqkLtQ5MnCVqexZTKFFIt51pdgULlug0WBwTk,3035025
98
- biotite/sequence/align/kmersimilarity.cpython-311-darwin.so,sha256=8rpeBZOsKIgV80eA6W3t9-EjEr93pa0VR9OuETIMfgo,247729
96
+ biotite/sequence/align/kmersimilarity.c,sha256=rg-AmN2wiEB9jb-TMwuCGhMbbjk0KwevEtVXyWQ2Iss,1257695
97
+ biotite/sequence/align/kmertable.cpp,sha256=oOSC7fXAnrf8_w02zMjTwBMyrXItta8xLCiTuhIbPoQ,3035277
98
+ biotite/sequence/align/kmersimilarity.cpython-311-darwin.so,sha256=iyqPZ8aXYW9KjGagzJmYJqEhu7XvY5DDfPlFZJYaaTE,247729
99
99
  biotite/sequence/align/__init__.py,sha256=Xah34jQaYg0TPgzGnTqLPpPslx_y6CsgU836Ug5uUcM,1704
100
- biotite/sequence/align/tracetable.cpython-311-darwin.so,sha256=QMus0iRfnORDyB6sp92CDJRXmRZSCyw3nTbZblWnqFc,204973
100
+ biotite/sequence/align/tracetable.cpython-311-darwin.so,sha256=t6SC-EXmO6g24eKQlsUqRNFyumHel4QupE7OENquRc0,204973
101
101
  biotite/sequence/align/buckets.py,sha256=6vIIMRT3h3t8PWaJxT3TjtA_fKtYyalBv-E4OdDOy00,2422
102
- biotite/sequence/align/multiple.cpython-311-darwin.so,sha256=ntvIEc9HV5ieq3A5MuvAnjv-apY1l3keR_lQKJ06sno,546843
103
- biotite/sequence/align/permutation.cpython-311-darwin.so,sha256=jX-EtEy2mIRmrQKcTogun_FgxJf3fjM-dGYPAr5uGsY,250382
104
- biotite/sequence/align/cigar.py,sha256=Mk3kECMKkKWxLLgIZ1hkADsz_2AJJHrAPMulfKTCA9I,12915
105
- biotite/sequence/align/selector.c,sha256=IyJyC8OiNIuv6gXJ_3AyY3J0gR9ZegnLQrczsM5haow,1637543
102
+ biotite/sequence/align/multiple.cpython-311-darwin.so,sha256=gURKwVvUbI4YgmCjkpD3OTHLK-ntSILX0aTeLh87ejM,546843
103
+ biotite/sequence/align/permutation.cpython-311-darwin.so,sha256=5InhDhWxxuBPlDLOsxb8HtRfwCzmf4EqqjZk_SAAxVs,250382
104
+ biotite/sequence/align/cigar.py,sha256=chS5LnAwHPZmCw-zKVR4apAuSMuxaxxuoDG2w9fLWFg,14647
105
+ biotite/sequence/align/selector.c,sha256=nyE5sZmN63nlMYZqjfdgra0dijddv1wmbRTkIemy5rQ,1637723
106
106
  biotite/sequence/align/statistics.py,sha256=TalCx3RT8jozU56DMjNKM2Q-fkRiHVq4mI3Wy1YH93M,9732
107
- biotite/sequence/align/permutation.c,sha256=tzOl2wFk1IRV0WKBGzeEQfyOqEgMoq8Vuj4TAmvXHiM,1283702
108
- biotite/sequence/align/kmeralphabet.c,sha256=Z-zYAHb4QMnKfARMxFNYADRIsL5omX7ybqSzGd1Gtkg,1917714
109
- biotite/sequence/align/pairwise.cpython-311-darwin.so,sha256=AZuCUPbo9tNBxu_CpKdg-yXsYq7rgMrcrsvqb7-nRYI,631179
110
- biotite/sequence/align/multiple.c,sha256=EbEm3S_3bEiCqlMvjqK-Wf8GOFxW804Ll6ARG5tog24,2279578
111
- biotite/sequence/align/pairwise.c,sha256=7fMEj-rClVhD3CYPz5SD2--xzi0-c2JKZc_0R-FNqTA,2887032
112
- biotite/sequence/align/banded.cpython-311-darwin.so,sha256=5XLmczk2YBt-MPcZrMSu2J1wEWuYU8OIcpxjFdZEBAI,578201
113
- biotite/sequence/align/localgapped.cpython-311-darwin.so,sha256=NM0ClB7P_Xc5WzFDOBOAeReDQ_KP8pj4HrNqtUQZULA,1163998
114
- biotite/sequence/align/tracetable.c,sha256=t-j8jrStoi0I_420eq9ThbvivR4skg9zrmRc-XUiEKo,1223804
115
- biotite/sequence/align/localungapped.cpython-311-darwin.so,sha256=DOMQmK84ligwAsNEMbmaXvY_CLrdu1Gb-fXadQ4Xan0,321360
107
+ biotite/sequence/align/permutation.c,sha256=U99sK5TnVEtoifsGM4SVB_tvQpWkouytSZ9PvqwXPIM,1283868
108
+ biotite/sequence/align/kmeralphabet.c,sha256=lK_3Li4k4nbrqwnl7BnyUtVjWnYwv57-zRFuoeX8t3M,1917858
109
+ biotite/sequence/align/pairwise.cpython-311-darwin.so,sha256=Cw32vA63CTIxNt_FcZDjBFIf-UI1qFVFVHoPcciw4eI,631179
110
+ biotite/sequence/align/multiple.c,sha256=Cq6oHwcI4wsPsjEW3CYKNsjlhQTNCXxmthQFmD8uP9E,2280166
111
+ biotite/sequence/align/pairwise.c,sha256=yvQ26gd2FBcyZXLE64FOZXFbpWPfjVcdoG6JFRHfcAc,2887759
112
+ biotite/sequence/align/banded.cpython-311-darwin.so,sha256=s8df8zf6aQZb_CKpVFoBJ0qDG-z8caJ3WHDmnxItB0s,578201
113
+ biotite/sequence/align/localgapped.cpython-311-darwin.so,sha256=QFCp_kkwtPrSqJ1PkjqI9sSe-IIJSa4sBOeTzBYP_G0,1163998
114
+ biotite/sequence/align/tracetable.c,sha256=92tzAb33OvvxrmMnHYIS0fCV-166E5FPVfvU-oDCI1g,1224026
115
+ biotite/sequence/align/localungapped.cpython-311-darwin.so,sha256=bKdhXkUUIV5uPtF6LMVRbnz1LD6dgEx19vGRdyYjjCA,321360
116
116
  biotite/sequence/align/matrix_data/PAM370.mat,sha256=ZD8BpkVrVK22_oLSXZb9d_kzNDfic_i0eVT1fUNkyBk,2068
117
117
  biotite/sequence/align/matrix_data/PAM210.mat,sha256=UfUmaJ09ID11GUzuNeK7aUzgZTW1iJLizADnD0qT2BI,2067
118
118
  biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=j6FWyeTXvfpSR0ZGecI18MCATcjM_FTJ2XGoEjWg3Qg,2122
@@ -228,106 +228,112 @@ biotite/sequence/graphics/color_schemes/jalview_prop_strand.json,sha256=83GsLW_L
228
228
  biotite/sequence/graphics/color_schemes/autumn.json,sha256=usp-Y70tk39LCJV64vi7t3wd0pcf7kOjEE8dZhAbryM,842
229
229
  biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=V0IJ-GsT8G8-J9CILWaiY3QkB35wYEq2kbWEDqYjm-4,701
230
230
  biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=xkNRgGj_ersYNx8eSDAnI1HQalGiAWHw97tO_pmfyNE,249
231
- biotite/sequence/phylo/nj.c,sha256=NCgKm3NX7IRK3pZdWh21zWbmxQhA_I-GZU330MvY-OY,1225986
232
- biotite/sequence/phylo/nj.cpython-311-darwin.so,sha256=UQXU9rW-Qo2QyAW5Rcz6yl2emyyfg1vn3r4M7ciGnwM,229189
231
+ biotite/sequence/phylo/nj.c,sha256=Ugh20wePXCAwUFI4uPbNd4mAFlKDhENuGCfgvZtvvJQ,1226152
232
+ biotite/sequence/phylo/nj.cpython-311-darwin.so,sha256=L1Fp7fkvCh1dNWPCjirY2Ed9JKEIa-xwoHzf18-jzdI,229189
233
233
  biotite/sequence/phylo/__init__.py,sha256=BNU2f9wzpkX2VngUFux7A7CvnBkzU78ziMXLLVNsJuA,1260
234
- biotite/sequence/phylo/tree.cpython-311-darwin.so,sha256=lsi_iTI80GB0mpD5Nqc-JY4hP_xArut_xf8Dfl-Ts6I,301271
235
- biotite/sequence/phylo/upgma.cpython-311-darwin.so,sha256=sT5AQD3wfsDMY76u2TAHHd5Q_Ojt8CaaoqoO_dyEqMM,227736
236
- biotite/sequence/phylo/upgma.c,sha256=5yvibjj5akDWLpne01Gky55MKEKUVryE14G0LsQUZmU,1173514
237
- biotite/sequence/phylo/tree.c,sha256=vWUElNoUlKnWdL0mKck8lbRNH8gYuS96ID-mc9NXORE,1221028
238
- biotite/structure/superimpose.py,sha256=l40pOHCl0ap-Y4lhvOMnIvnQvCjG-1Atq7arTrrjuNE,7630
239
- biotite/structure/bonds.c,sha256=zPCO638qSN41CCNv3QQAexzsAbaKf3aTiAYtCLMMpuU,2544387
240
- biotite/structure/sasa.cpython-311-darwin.so,sha256=Wgfp8QhZEYB-_-HqAJKPO_tKY5PE4BsBOzk0jqzKciw,283079
234
+ biotite/sequence/phylo/tree.cpython-311-darwin.so,sha256=aFrE3U4IHWQqxFluZD0yGmXsI8JpQJkivx63SUEQys4,301271
235
+ biotite/sequence/phylo/upgma.cpython-311-darwin.so,sha256=2ZDMfSAkEDRJ5RwdzImfxPeZDPo0HG7nk-T3lgskLVQ,227736
236
+ biotite/sequence/phylo/upgma.c,sha256=Iy99PauIiXguCiaAnJBYkdIL1o0MDqkEiAwFFuvZwKA,1173680
237
+ biotite/sequence/phylo/tree.c,sha256=ChffdO32JiXfzBvS2Coxo7HLEKo7wZ7kUmVpopf9Cto,1221256
238
+ biotite/structure/repair.py,sha256=5tWFQVdw2SGENO0eQexe4Dni_bDpZdT0UfA59rDgJGo,7736
239
+ biotite/structure/superimpose.py,sha256=UnXZVoUgucOnqD7PN3wdCmeS3zXZpNsXRpP9CH6oc1U,26153
240
+ biotite/structure/bonds.c,sha256=Kjk9AxkPTp2zc2LWfAaxReqbIGXnd8FX1V1zUK8Ty94,2557036
241
+ biotite/structure/sasa.cpython-311-darwin.so,sha256=ipNu3Wvd_Da4xPE9hF5GiFUwtPFGgFPHekjI4VU5q8w,283079
241
242
  biotite/structure/chains.py,sha256=OdOLduRjKyP1GZvN_QjngWUC3hTYp3cMQuvyKuNRqj8,8807
242
243
  biotite/structure/box.py,sha256=svbwAtZdH-10hPRWOACID_OM8-C329NCB__P0hZNwW8,18742
243
244
  biotite/structure/error.py,sha256=rdNJb21D9kPTSsbF3-RQmMGegjc46jXnYEvLDIPIXJw,774
244
245
  biotite/structure/resutil.py,sha256=M7BkVAaBs3iHtFjopGQAxXbUrq_QSoeedhz7_z0ZDSg,5602
245
246
  biotite/structure/util.py,sha256=0iSSG46xH3JmW83QRYUSZpO_hR5Yn9TpAA8-jajZsi8,2258
246
- biotite/structure/celllist.c,sha256=YNEOO5CyfoTt9MqxXhQC7QUPrVe8gmj8gWZaZthG_d4,1574426
247
- biotite/structure/celllist.cpython-311-darwin.so,sha256=qxckp2rxWxFZB4XOLUn65gDDtRiO93mNaPyZbwnh0RE,338571
248
- biotite/structure/__init__.py,sha256=DWftBI_fZjYUsHFdXhZI9TjqXtxHtkehwKq-Yh97iao,5277
247
+ biotite/structure/celllist.c,sha256=X7hQV1cJelAtRhP8WDJHidqf0W4uvBPMIX4RnlVvAIg,1574606
248
+ biotite/structure/sequence.py,sha256=s_ugDoGWYWTfUprxOOR-fv422qFkQFkOshLQ0yXXw4Q,4152
249
+ biotite/structure/celllist.cpython-311-darwin.so,sha256=Hnc6mpikUPZrU7PGmc84DaJziLt81DzON-dAykyRZ7Y,338571
250
+ biotite/structure/__init__.py,sha256=x60JjCz9II2kvycGwLHvdWMOKsF3Oqdy9oPbqXMskuU,5323
249
251
  biotite/structure/mechanics.py,sha256=wQIK33d6NhJNTxqr6fSashXrlraLJC3-xcfCXM6ZPqA,2702
250
252
  biotite/structure/sse.py,sha256=8fa1-bRax5nZQKYRqr893ymn-Uv1SASg3yKx8HDi5dg,11963
251
- biotite/structure/charges.c,sha256=OuPG6WvaM5AS9mCg_CuQ9JfQUBv4dWx5y9vQE5XCljs,1418427
252
- biotite/structure/bonds.cpython-311-darwin.so,sha256=djZ2J-6hBrfMtPJbweIWMjHU5qdUsYCIZKuZ-h4rN44,599976
253
+ biotite/structure/charges.c,sha256=wMaSEPNolWJczy5YiUN-y4tjt4IAhIGFPKj8xH1_UXo,1415318
254
+ biotite/structure/bonds.cpython-311-darwin.so,sha256=pukmZ1HTgFgLOya52JxIXodM1R8E9mMOYrRwEd2_HM4,599976
253
255
  biotite/structure/density.py,sha256=TLKvLLbKRWDmH_A0mSFZeHkmbFb49lyyiL7Eeu-mLEg,4234
254
256
  biotite/structure/rdf.py,sha256=dS99s-n_N9zunYn5AQffXdEkapmUizGkugGLj9EDXBo,8059
255
257
  biotite/structure/transform.py,sha256=4xlUbN1JiLqw1Tc-qFKNWj2qBJb0jXadW_LuJWHcsQc,19767
256
258
  biotite/structure/geometry.py,sha256=yWHq7u50_TqqpFpG4ARVZNqCal9JFJWnRyYADdvgEYs,25256
257
- biotite/structure/molecules.py,sha256=2sYAjjU_ULvTZ_u4XxvqGNp9n1vuqW-Zqws-UAbCnKg,15515
258
- biotite/structure/filter.py,sha256=pZRlp_vhVmfqZUz_sVDyy3P3FIXim-ihsN4OvDDPYjE,19007
259
+ biotite/structure/molecules.py,sha256=_p09r_BmyMs6QcbxrZhGuT2qwR8oQrgHV2OMQ5W7U9g,15478
260
+ biotite/structure/filter.py,sha256=k0BpA7E980Yzyt5EE8KQTlyhs0XOud3G5jdq6mRzTwM,18716
259
261
  biotite/structure/atoms.py,sha256=dyIp5l5QuMcmqDcimNU94NsLF3zqZtbyK4dN-w1OLoc,48016
260
- biotite/structure/charges.cpython-311-darwin.so,sha256=TrD_4_CgxQwlPzTxQ6P_njHwqqcYh_0qFYwbl9HVegc,283850
262
+ biotite/structure/charges.cpython-311-darwin.so,sha256=tXuYdok4OVLDEbmhxwa26pBy4cVe05S9qiA5aOLll9Y,283658
261
263
  biotite/structure/pseudoknots.py,sha256=C8Id-1QyNBDuQNRCumspE_RoXuDNqJ-eFEimuzFdLIo,22380
262
- biotite/structure/basepairs.py,sha256=53VyDZc3cGTFVYkA_kWLqoGN913bBi5XolLGx1NhoqI,50297
263
- biotite/structure/sasa.c,sha256=N_UrwmKdPXgbOVn1ePBzrYe-UBltz9vUCwzZvLlk-P0,1327172
264
- biotite/structure/integrity.py,sha256=9XndLoDGyOxB6l16to5mv4sGyUyRTb2PxD_hxxPk_ec,10061
264
+ biotite/structure/basepairs.py,sha256=7TK4E-PXjt0GwE1JOE_AUfKmbrUY1IE9Tc6I9HLpb2s,50148
265
+ biotite/structure/sasa.c,sha256=RZ6orGqKIIfF2YV09W4WM8Ebex0ZuzHVCHEaArjZgEU,1327338
266
+ biotite/structure/integrity.py,sha256=Z1g7HLB-nFtCWXbhZ2QyVML9jvnXty6YwO_FTpaWfzc,8609
265
267
  biotite/structure/compare.py,sha256=eBUGhlTSYApvoKoZ4LnMI5Ku2sB9aCeQ-V7Fcld4YiM,9502
266
268
  biotite/structure/hbond.py,sha256=zkJ1NLaOGhpwUz7WFd6ATihlJ44GGEZ9rRc9JRZ_PzE,15162
267
- biotite/structure/dotbracket.py,sha256=HEE79LzPeKNW2DXmg0VLfNCs8xmdc1Wlj8kebPep1H8,6837
269
+ biotite/structure/dotbracket.py,sha256=dzuqP1J51sq85Ng0J7IfWUXT103gIjuQsare99-jeOU,6885
268
270
  biotite/structure/residues.py,sha256=dywbV7cTrJSNBAugC012gKrx_GrMZOcs7J76ojBM2AY,22370
269
271
  biotite/structure/io/trajfile.py,sha256=9hAnnKKycYXqEyaPoy3CxYJHC_PA9d_iUSmIstJfqFU,25694
270
- biotite/structure/io/__init__.py,sha256=Um44cupx_hfCNVNiEg-XY0KHe72CLSwBnyPBEpBSSkM,1121
271
- biotite/structure/io/ctab.py,sha256=RrjirTyVkw4A34OnPJUSFUDs3VqE6aPHQiZH7dVl078,4951
272
- biotite/structure/io/general.py,sha256=EJ6Nnx8wgMvc8yY1cyHGhJnW4WP6sUIwY9aznrajn5A,9714
272
+ biotite/structure/io/__init__.py,sha256=ROMPxtVLBLjvMWskQefRcSjeLlzAJP9H1lTWokp9oIc,1034
273
+ biotite/structure/io/ctab.py,sha256=-a0OTessNZhNo76hPKWh5x-x6wKfGDLwGeDT52jRZHM,2183
274
+ biotite/structure/io/general.py,sha256=GOhYOAwifEqztKEGl2Iweocm27P6eOZLnRZCb4Zof4o,9066
273
275
  biotite/structure/io/dcd/__init__.py,sha256=APOO_JGG2CyUCLF4xCPmA-Ji79r4rAUaoSXajzkOEWg,387
274
276
  biotite/structure/io/dcd/file.py,sha256=JLAOdn4LkTfXqIEvbwtRHiXvRcJYEcFwr7kaIKOmC-g,2170
275
277
  biotite/structure/io/trr/__init__.py,sha256=ut-5WHHpk0n1Vs6zHhi4RnNHb3NQsLH8iVclcmkEbQE,358
276
278
  biotite/structure/io/trr/file.py,sha256=kE4pOoJJL6eKtPHcSRyirTK4Tsrv_mMJOhTY8gxidMM,1302
277
- biotite/structure/io/pdbx/convert.py,sha256=sDbvEX4YNFFQfmW7rCHzwHGGrvVoFhsJCQvniaG-cj0,42013
278
- biotite/structure/io/pdbx/__init__.py,sha256=izGiWxcgV6-LDCgd76C4FKIctSEzmctTIIxLmnmf29E,593
279
- biotite/structure/io/pdbx/file.py,sha256=BsMZiwOUW9w8LtTekYROa0u9TDXhPh-_Ud8_AEF2ARA,23823
279
+ biotite/structure/io/pdbx/legacy.py,sha256=01mS2bA5_GptHDpe_F7_6IyueQ8_tlgB_X_m9dRa694,8842
280
+ biotite/structure/io/pdbx/bcif.py,sha256=u4F5FxpGIA0jR1gaG_SRGJNlLjHSo-xzueBcHfE_ukE,20379
281
+ biotite/structure/io/pdbx/convert.py,sha256=jrBqyx5vEnZLr81MXeZxjHrubmGzph3KNKYQm6c2Eyc,59757
282
+ biotite/structure/io/pdbx/__init__.py,sha256=2rl6Fn2aPcu8-2QtgIVzjCOPVdvCWfqZh3LJr43TUP8,714
283
+ biotite/structure/io/pdbx/cif.py,sha256=OuL9csoC1BsyMutILRnPL433LPvNxcTwnJcv-RzLpao,32437
284
+ biotite/structure/io/pdbx/component.py,sha256=vS_aicTCme52-nqfjJPz4ZhKhbBZYHU7kOVLUOU7ypA,8143
285
+ biotite/structure/io/pdbx/encoding.cpython-311-darwin.so,sha256=IowTJhrAzPURYZgNHAG0maIgt3Ba9zNWpktaMmV_d-4,1157739
286
+ biotite/structure/io/pdbx/encoding.c,sha256=BQG00oLrMHHU595Xjlo5HQ0zk4R-4ARRBjxDAG1SUJA,4736141
280
287
  biotite/structure/io/tng/__init__.py,sha256=7JZqpfMSSlQItvolf_JGn2PRrAh1P_1AX1C18Oo5uww,356
281
288
  biotite/structure/io/tng/file.py,sha256=ulIW3m1wfSARQoNQwhE2TcLnDyWf7U3Q6_pN4tgSb9I,1302
282
- biotite/structure/io/npz/__init__.py,sha256=CuAuokkuPZygtR-sL385cEGdPqnsS1JMq8xU6EIr05E,637
283
- biotite/structure/io/npz/file.py,sha256=AysY0mFoWHXGTkYW_j6RknXulaGs-TDN-guM3eVVG20,4964
289
+ biotite/structure/io/npz/__init__.py,sha256=WBUmxbb3qaFjLdAQwzYhVI_vh8w7gMZRlcpNZBYBc0s,736
290
+ biotite/structure/io/npz/file.py,sha256=5xrKj7raPsby5U7sIyeilfsbCx0w_bcR8QG8anE2eQQ,4958
284
291
  biotite/structure/io/xtc/__init__.py,sha256=nHU9y_f75FMJpnY9Gngu1J39dfbXF3fZsSulvpWK7Qk,356
285
292
  biotite/structure/io/xtc/file.py,sha256=OTsBk_xscSgcThKrAYYjYqTDw-g4yM5WBr2PKBhnWS0,1298
286
293
  biotite/structure/io/pdbqt/convert.py,sha256=IihHFIwMJuBrdGjZ6NRID8O8Ti-3QgILX184rMaYHzY,4027
287
294
  biotite/structure/io/pdbqt/__init__.py,sha256=n0-GSBidNVDNOsTo3oHGSv6agAFn2_duOvwykSX3mlc,440
288
- biotite/structure/io/pdbqt/file.py,sha256=_saqWi_7LknLDiroAHfuwzhXJCh83b_JlmrLA9yAw14,26399
295
+ biotite/structure/io/pdbqt/file.py,sha256=mSeaAXfgYH0SDKTiIH-TvKgMbJeWkoUbqngE7RHKu7Q,26399
289
296
  biotite/structure/io/netcdf/__init__.py,sha256=Vzr56ymoVeSlXqEF-nhPJFPBjxSFWuyD9uy8QpzhFyU,349
290
297
  biotite/structure/io/netcdf/file.py,sha256=AW2TX7qubiDqI27Q9zknC4zE5mrZetjk8U6QNhqUnpg,2156
291
298
  biotite/structure/io/gro/__init__.py,sha256=lY39nljfVlWbHsR4RKAM3rRJzZdQliRevVzZM1MT-eY,407
292
- biotite/structure/io/gro/file.py,sha256=TiPUGb1_kMLGtkKO_7xXYmZ6v7KYcLzgyDlk6OkLAl4,12948
293
- biotite/structure/io/mol/convert.py,sha256=BMMq4W2765XwglI0RxDSDUbpk_fuQNPmpsBbGWGaNMQ,1305
294
- biotite/structure/io/mol/__init__.py,sha256=DT2L1kMbZeUKt6OgWOaI9pn1h5sP3qkXcdRM-qMdRXY,541
295
- biotite/structure/io/mol/file.py,sha256=ljV4rpbUv7o9lUvWxT06HmNs9wbfT4a-QrAWYzDDF-Q,7388
296
- biotite/structure/io/pdb/hybrid36.c,sha256=a47GawSQDozodrpWBNkgcN5xCcI78_SH8oEPnyxkJrA,1110763
299
+ biotite/structure/io/gro/file.py,sha256=AEmYhsl1ieO1OJ1sg4pSCDt2j9Iguurnhn-aFCqAFCM,12800
300
+ biotite/structure/io/mol/header.py,sha256=l-1vqEEnxgJ6KhWFfkf3xATf-SETOERB-apS_npFnwg,3381
301
+ biotite/structure/io/mol/convert.py,sha256=vPS3ZzbVX9qpWj4f5lz0_XtZ_GW6WkBJMfcqCbC8eYM,3781
302
+ biotite/structure/io/mol/__init__.py,sha256=fuqvVcydfrxekEsU7qAQ2Zb9sYX3vfQ1uygG20wJNZg,581
303
+ biotite/structure/io/mol/ctab.py,sha256=retJO8KrIgpg9FxjvrRnCeI6BwqYo43Duh2Kfv_B2Ik,13532
304
+ biotite/structure/io/mol/mol.py,sha256=_55esbURwK1sNWkSopDR6WOpOOPdGXwaDW74_-pWrgg,6293
305
+ biotite/structure/io/mol/sdf.py,sha256=IsHlF2JADsu_18tdhRlaXxYdJUE0TMgceTG-jGv-QuE,32006
306
+ biotite/structure/io/pdb/hybrid36.c,sha256=QnVrzSl-4F2C33KonKXRql1jPMhbywHQVUoMwwCwgfM,1110875
297
307
  biotite/structure/io/pdb/convert.py,sha256=jysm2PrrfyzYy3ZmkIiMuOEoaSdID5qDkJ7LHI3WavA,10659
298
- biotite/structure/io/pdb/__init__.py,sha256=ek2Ri_MTbEmrdKa5zA954NOVAJs0bIX16y-Fa-ujk9k,722
299
- biotite/structure/io/pdb/file.py,sha256=GZ3pk2Cb9I_DsV4uRzKr3a5C6WQ3s_9rTL87BOu3Ics,45976
300
- biotite/structure/io/pdb/hybrid36.cpython-311-darwin.so,sha256=VjgL5dEz0oeWW_gBdOEe8NGsPe0Dv_1t8_SJW0Xrbt0,211611
301
- biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so,sha256=axlkB9rX1KXKak3Jw6oEzp2lDgrLSYkhw3RLRMsPrko,355470
302
- biotite/structure/io/mmtf/encode.cpython-311-darwin.so,sha256=9EzXAJZRpFm2dnutcLLKp_-4n47N5wov_vxAzx2WqlM,262137
303
- biotite/structure/io/mmtf/decode.c,sha256=EyWrSOkpRxDg7N1BSSp1YUWeZNFg89G2G3wJZSGv6c4,1384335
304
- biotite/structure/io/mmtf/__init__.py,sha256=tv2KbFnn4RCFR6Do1VgHddEzx1n7mnrqPimUQ60iQF0,587
305
- biotite/structure/io/mmtf/encode.c,sha256=3QFvDzAyBq2Z5HV8PGo8FPWIIbJmj8XKs2gv7q-O7fo,1332251
306
- biotite/structure/io/mmtf/decode.cpython-311-darwin.so,sha256=XUMunzAj11sSHa8HWl2ZG_m8j-wnQqqTVJ4nJTdI7lI,282313
307
- biotite/structure/io/mmtf/convertarray.c,sha256=RxyjTowZjfeANSNz8AjMkpzB7aJ98x-feVvMTf6jTsI,674557
308
- biotite/structure/io/mmtf/file.py,sha256=AVm6DqeQcTzpVQnFWRz752XWcAHErXkQ3s7GlxpVPgc,6854
308
+ biotite/structure/io/pdb/__init__.py,sha256=2qtLwVQu10AZhk-DUAqcIbvofyIC8BKGh4Gk9b_Ha70,732
309
+ biotite/structure/io/pdb/file.py,sha256=9dhv1uEApagyZsBKC1_yr0ARy8hfEnW5eJMpHX78-YM,48003
310
+ biotite/structure/io/pdb/hybrid36.cpython-311-darwin.so,sha256=cTawfgSDfQMSZHF-t5McMnPC8HdmVtbCHrk62if3ask,211611
311
+ biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so,sha256=I-7RdBwIjDcDPpmiFR7auk4iFEYIpV5BOWO_IDD5otY,355470
312
+ biotite/structure/io/mmtf/encode.cpython-311-darwin.so,sha256=kFPpdaOc1CjF312eGAXX9LeNYP5PqYFA-cwzjfNcmLI,262137
313
+ biotite/structure/io/mmtf/decode.c,sha256=2_eoCIpwHnTj1uwhGnuhuY_yHncH6sSy1AcAslS-Ajk,1384593
314
+ biotite/structure/io/mmtf/__init__.py,sha256=5kmc5agVc7eCUhtA0DCKIj7eR8qlvaqIIaJXUHFnc6k,662
315
+ biotite/structure/io/mmtf/encode.c,sha256=sLMVnFjPafY3NssorbDc13ktibeNe9gXXpSFQytxnpA,1332417
316
+ biotite/structure/io/mmtf/decode.cpython-311-darwin.so,sha256=REG7JFbXfSGNu8dXpxTim__xLFBzY26fPlJGLdSZYFY,282313
317
+ biotite/structure/io/mmtf/convertarray.c,sha256=t6qV11WmYGEijMxhHiOX5VK8AayCt7-jY4sUtyb8INk,674749
318
+ biotite/structure/io/mmtf/file.py,sha256=mMNUCXx6cKptqqcfteE_2i-e_PPwDAyVFLebZnvoQS4,6946
309
319
  biotite/structure/io/mmtf/assembly.py,sha256=HYVy2Knir1TqWT_NfvrmUmR2UX8eFNzVmQImSLZP-7w,8184
310
- biotite/structure/io/mmtf/convertfile.c,sha256=uODiCU9qD6sLU1IssJpcyfCss2enuhgfeW0uRNkrLJs,1553713
311
- biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so,sha256=5d8QQADOn-NK1RZIMW1yoaFonw1nCHGbP4XcGQLQHQQ,194815
312
- biotite/structure/info/misc.py,sha256=6xMO1yaWH2JxPeHqlDqC2SxAwKW9oVXE2omYHwUDdPk,2173
313
- biotite/structure/info/carbohydrates.py,sha256=GQnIVS_hRK0zrlZ_o_xZD0TpNGPrH3_-Jv7hLXX_omI,1248
320
+ biotite/structure/io/mmtf/convertfile.c,sha256=SAFMnBcdlYD8Q-bMIDTvCdSegCGZROOKm-9viPfougo,1553893
321
+ biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so,sha256=eDRvM-KzOnKtncsgd0cA431NoVwkUeF1PX-EkVlbEsI,194815
322
+ biotite/structure/info/misc.py,sha256=bmG6nycH8s49lAxEwMVnNLCIz95VMCR1EIDQeVyWUyo,3490
314
323
  biotite/structure/info/atom_masses.json,sha256=WME4ezDPy-HrEIhxkOGxcmIMdgxf1x7e_xwBkFRdTsY,2383
315
- biotite/structure/info/amino_acids.py,sha256=IDdvU79JMwLNwHA0fjoI4pVapbzTG1U5dqamrV4k9W0,1446
316
- biotite/structure/info/amino_acids.json,sha256=W8QthUORbYGPBz8Y-xC6sfKE8hqKkk7PTu_6mm3OMNQ,12433
317
- biotite/structure/info/nucleotides.json,sha256=Vp3vLEpNEgo1MLTRU3SDntxJQLKu3e3W1uIMm92VYLA,6104
318
- biotite/structure/info/residue_masses.msgpack,sha256=KDZ4r82AcecK_CCD64bEnTZK3rur5Jq_fSBaiB3rB1M,459118
319
- biotite/structure/info/residues.msgpack,sha256=yt9Nd0G3mnTorAfrNHAz34ZhgsvGwGWYRgG81Y3nuv4,73230917
320
- biotite/structure/info/__init__.py,sha256=LnAvRskhphES4yfOT98EwcGWNKsH4TGkJqKTsUbEaPI,829
324
+ biotite/structure/info/__init__.py,sha256=k57tfM03apKfR3UlJMoDXZHS6jilhkeni1DoQa_nWLs,702
325
+ biotite/structure/info/groups.py,sha256=RTJvSclZGxQkcsOH6ML43QWCBkeUQKE4eNSge8MHgPE,2043
321
326
  biotite/structure/info/radii.py,sha256=GlTPOCvtqGy7PQJlTOZA57PXg7xPLwKYEy0wcrCmiEc,5648
322
- biotite/structure/info/standardize.py,sha256=8LET7mOuNFCrLVMXjlHhj15ZDqzixZvGSw2TqxI_x-g,7573
323
- biotite/structure/info/bonds.py,sha256=ugZitgA4Ajj3RcUrum4H_ZuqVcotr2-Df5vxkdVdPvo,6089
324
- biotite/structure/info/masses.py,sha256=XKRyNxCZi4kESCXi3w5o1EYrhoPUSkIfkmR73lWL6v4,4546
325
- biotite/structure/info/carbohydrates.json,sha256=JfzMX_FwOBhzH3E0XEvJVjCP80d-bEjOiIFtgJpNd9U,8962
326
- biotite/structure/info/nucleotides.py,sha256=exs3qlk_CB65EXvoCzDtL2ZdF2s5QboT3lJuCuMabjU,1274
327
- biotite/structure/info/atoms.py,sha256=y_N-4O6QYDyU2FEFlEDjGSRQup6zByDgguBpbyoq8_E,3490
328
- biotite/structure/info/link_types.msgpack,sha256=EO5H3hQFNuLs1tHft9zZf3HpN0-3O_XM3QA3HIY73PA,582272
329
- biotite/structure/info/residue_names.msgpack,sha256=p8uLuHBVko6pbq-GDjqLIZMtc7_XEY1NUFZQt4YL-yA,2952002
330
- biotite/structure/info/intra_bonds.msgpack,sha256=gdf7MGumNkEg6ToZnyI2_zL6z6gLVyi6k0kP5eFaDIo,16338340
327
+ biotite/structure/info/standardize.py,sha256=AaYn7mx6Y6NylkeOg1kIpyNoI-KrWbGSXXu_GEcSAZw,7772
328
+ biotite/structure/info/bonds.py,sha256=YDcRf480_M_Sl7j3uoZ7aJZbpfAg4n6tyVoD3ijFtNk,4651
329
+ biotite/structure/info/masses.py,sha256=dnZbg4k_89SuTwFUulyTKAL6Mnk4POPMIVhJLl5xswA,4489
330
+ biotite/structure/info/atoms.py,sha256=qPCAgGF1Rd6e7mIzyBmXF1zMZy6pgX8E3wDeDvC1asU,2568
331
+ biotite/structure/info/ccd.py,sha256=26BnKJEGH6Bhmvkll_ev6HSCIi0hNx_cs_N9hqNXP-4,2754
332
+ biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
333
+ biotite/structure/info/ccd/amino_acids.txt,sha256=RUyolncqbsplkY2hlajjOSciigyZEYL1GCx_f63jXx4,6669
334
+ biotite/structure/info/ccd/README.rst,sha256=sfFRGesjpATIp5S8kiEV7cr-Jb51fWLGT4KypmzsoPM,342
335
+ biotite/structure/info/ccd/carbohydrates.txt,sha256=bh5Vc84tETB-FKUm6H1brBN6zM5a2zzzwuWyb0MXaLA,4544
336
+ biotite/structure/info/ccd/nucleotides.txt,sha256=Q7Zjz45BAO6c2QDAgvYdKtWAqmjQxy2NQ6r-bsZRqv4,3136
331
337
  biotite/structure/graphics/__init__.py,sha256=YwMT8-c2DjrkcwyK6jPeDtAKxQda0OhElnwk8J0y3Hc,353
332
338
  biotite/structure/graphics/rna.py,sha256=bhIHoB_9sFuZPrHQ8qQnToRiTCfgQ7JLVNIdsQVvkw8,11888
333
339
  biotite/structure/graphics/atoms.py,sha256=nMhbmnjytxEDkxTTm2wHM2dObSw3izjvRbqssCW876E,8171
@@ -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: cp311-cp311-macosx_11_0_arm64
5
5