biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.41.0__cp312-cp312-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.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +241 -220
- biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +213 -194
- biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +231 -203
- biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +256 -235
- biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +233 -212
- biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/multiple.c +253 -232
- biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +272 -251
- biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
- biotite/sequence/align/permutation.c +213 -194
- biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
- biotite/sequence/align/selector.c +215 -195
- biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +213 -193
- biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cpython-312-darwin.so +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +213 -194
- biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +225 -200
- biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +213 -194
- biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1435 -1277
- biotite/structure/bonds.cpython-312-darwin.so +0 -0
- biotite/structure/celllist.c +215 -195
- biotite/structure/celllist.cpython-312-darwin.so +0 -0
- biotite/structure/charges.c +1050 -1099
- biotite/structure/charges.cpython-312-darwin.so +0 -0
- biotite/structure/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +217 -196
- biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +215 -195
- biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +223 -202
- biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +213 -194
- biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +89 -34
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112803 -0
- biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +213 -194
- biotite/structure/sasa.cpython-312-darwin.so +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
- {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.
|
|
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.
|
|
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
|
|
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.
|
|
2
|
-
biotite-0.
|
|
3
|
-
biotite-0.
|
|
4
|
-
biotite-0.
|
|
5
|
-
biotite-0.
|
|
1
|
+
biotite-0.41.0.dist-info/RECORD,,
|
|
2
|
+
biotite-0.41.0.dist-info/WHEEL,sha256=Vo9YTsjXxZ5SWdH4n69oS5jU3YTIi3eHk0n-aUcTtlw,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=
|
|
7
|
+
biotite/__init__.py,sha256=O2aZEDRPWHZaO2ApwDuoh6i-zEjYXqKJBtp6zMqPg6s,522
|
|
8
8
|
biotite/visualize.py,sha256=mLME6fOGwdcUZLUzDTbwUpZokC4D1cVE6ICdtJDc0yw,9842
|
|
9
|
-
biotite/file.py,sha256=
|
|
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=
|
|
25
|
-
biotite/database/pubchem/download.py,sha256=
|
|
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=
|
|
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=
|
|
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,8 +57,8 @@ 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=
|
|
61
|
-
biotite/sequence/annotation.py,sha256=
|
|
60
|
+
biotite/sequence/codec.c,sha256=IJDgw8XFVquijfTtmXIACMUFnh9Ai2ZL3YN_Kspie4U,1533571
|
|
61
|
+
biotite/sequence/annotation.py,sha256=ab49UyMA1StDMGL-67NG75FRYes4-1qM7RAqxYbPxeE,29746
|
|
62
62
|
biotite/sequence/sequence.py,sha256=AbOf4a3ApXUBgflzYRux2nqpd6jDCXVAByUBkt9Jroo,11911
|
|
63
63
|
biotite/sequence/profile.py,sha256=LkH-jcTmxOyWMmhTgjjF7ykmQ7KlKidAdGp3X5_Wm-4,16813
|
|
64
64
|
biotite/sequence/codon_tables.txt,sha256=zZLT642H4qEkwUk5g-hWh-6ZWP_bgaz70fWcxwJDWJ0,10209
|
|
@@ -66,11 +66,11 @@ biotite/sequence/__init__.py,sha256=jwkyw2DlOVCyeZAfT5V1P-q6lZN7c7kINhNbtF2tODs,
|
|
|
66
66
|
biotite/sequence/seqtypes.py,sha256=IlaprG0DjBhAo_Y4gMW4gPtYXaTx2TknxpYp0NM2Z9M,19590
|
|
67
67
|
biotite/sequence/codon.py,sha256=IR-3WjyOohXY7FhSB7Hk5qhkQWz5bm9Isuho02SntJ8,16455
|
|
68
68
|
biotite/sequence/search.py,sha256=er8lqF2WM4rFG3gixxgEnJ8yNHiWae--02TjJCNRo1c,3149
|
|
69
|
-
biotite/sequence/codec.cpython-312-darwin.so,sha256=
|
|
69
|
+
biotite/sequence/codec.cpython-312-darwin.so,sha256=Hvx91g2w_6D12kXplzB3aaIuftDwNDKLzOlrcy63G4Q,318776
|
|
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=
|
|
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/banded.c,sha256=
|
|
88
|
-
biotite/sequence/align/localungapped.c,sha256=
|
|
87
|
+
biotite/sequence/align/banded.c,sha256=ILGkAE_bkDuzxpD1bUvwENHjUJm7eXCGUT2URquznxY,2583113
|
|
88
|
+
biotite/sequence/align/localungapped.c,sha256=cJwrHMIiv2cvKGFih8aG7ufPr8jWw64MoVKV15TvopU,1610419
|
|
89
89
|
biotite/sequence/align/matrix.py,sha256=fYfhqeuMZJEYJsaTFgbRLnu3BBFx97UANfIhGxHT7l0,13287
|
|
90
|
-
biotite/sequence/align/pairwise.cpython-312-darwin.so,sha256=
|
|
90
|
+
biotite/sequence/align/pairwise.cpython-312-darwin.so,sha256=RKeH4aC53SdYiKhDNviCGYBU9ibTAuGI_XPfuo0CjQE,631067
|
|
91
91
|
biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
|
|
92
|
-
biotite/sequence/align/localgapped.c,sha256=
|
|
93
|
-
biotite/sequence/align/localgapped.cpython-312-darwin.so,sha256=
|
|
94
|
-
biotite/sequence/align/banded.cpython-312-darwin.so,sha256=
|
|
95
|
-
biotite/sequence/align/localungapped.cpython-312-darwin.so,sha256=
|
|
92
|
+
biotite/sequence/align/localgapped.c,sha256=gzQfZqot82TUvSVfuHB4WX-_3_l5uIgmK5P_-sUT31k,4604175
|
|
93
|
+
biotite/sequence/align/localgapped.cpython-312-darwin.so,sha256=aRaAXjwMd3ZXmueVVq17bsvS9ur6acEWj44jztPBbio,1130750
|
|
94
|
+
biotite/sequence/align/banded.cpython-312-darwin.so,sha256=949f9iSRl6T48tzalQdc84FhkpzqiZXG7h9O1x9vyhU,578025
|
|
95
|
+
biotite/sequence/align/localungapped.cpython-312-darwin.so,sha256=1VWMqGkAimaYS15YB3Jg5YwK_mhGnYQFWsNgZU8Wc-I,321328
|
|
96
96
|
biotite/sequence/align/alignment.py,sha256=MF_3R2MMjuwwvG7j4pybQjdPCTk2fAwg_4gW-muzKfA,21338
|
|
97
|
-
biotite/sequence/align/permutation.cpython-312-darwin.so,sha256=
|
|
98
|
-
biotite/sequence/align/multiple.cpython-312-darwin.so,sha256=
|
|
99
|
-
biotite/sequence/align/kmersimilarity.c,sha256=
|
|
100
|
-
biotite/sequence/align/kmertable.cpp,sha256=
|
|
97
|
+
biotite/sequence/align/permutation.cpython-312-darwin.so,sha256=IHzmdjefsIr9r4f4Jh5KaeHmBYNS7cPiZebk04F8U7M,250350
|
|
98
|
+
biotite/sequence/align/multiple.cpython-312-darwin.so,sha256=3dpMOae8kLJ-Fnq_jnieZbaWhW27jkxA0ItA7NdKmiE,546715
|
|
99
|
+
biotite/sequence/align/kmersimilarity.c,sha256=b2OM4VjbVj0U53EfnS1Kx1gOgZCGmacMAGJeuTBTiUc,1259825
|
|
100
|
+
biotite/sequence/align/kmertable.cpp,sha256=XEJP2ldYXcSjPppz7GcXWqGgGEiMlbtemWmqbfQxjt4,3037407
|
|
101
101
|
biotite/sequence/align/__init__.py,sha256=Xah34jQaYg0TPgzGnTqLPpPslx_y6CsgU836Ug5uUcM,1704
|
|
102
102
|
biotite/sequence/align/buckets.py,sha256=6vIIMRT3h3t8PWaJxT3TjtA_fKtYyalBv-E4OdDOy00,2422
|
|
103
|
-
biotite/sequence/align/kmersimilarity.cpython-312-darwin.so,sha256=
|
|
104
|
-
biotite/sequence/align/cigar.py,sha256=
|
|
105
|
-
biotite/sequence/align/selector.c,sha256=
|
|
106
|
-
biotite/sequence/align/tracetable.cpython-312-darwin.so,sha256=
|
|
103
|
+
biotite/sequence/align/kmersimilarity.cpython-312-darwin.so,sha256=rh4KTJUAYPqWL2UWFZS3X_RjhwcuMukx_ilfmfiCWI0,247681
|
|
104
|
+
biotite/sequence/align/cigar.py,sha256=chS5LnAwHPZmCw-zKVR4apAuSMuxaxxuoDG2w9fLWFg,14647
|
|
105
|
+
biotite/sequence/align/selector.c,sha256=gCzm1ECwnJ8Wkc4QImRRYh38s9NO1xTCRiiFv9hBTrc,1637193
|
|
106
|
+
biotite/sequence/align/tracetable.cpython-312-darwin.so,sha256=ear3SZqZh-54NHX_aQDM_xQ0R-pYKeMDIANNAMEa9kk,204941
|
|
107
107
|
biotite/sequence/align/statistics.py,sha256=TalCx3RT8jozU56DMjNKM2Q-fkRiHVq4mI3Wy1YH93M,9732
|
|
108
|
-
biotite/sequence/align/permutation.c,sha256=
|
|
109
|
-
biotite/sequence/align/selector.cpython-312-darwin.so,sha256=
|
|
110
|
-
biotite/sequence/align/kmeralphabet.c,sha256=
|
|
111
|
-
biotite/sequence/align/kmeralphabet.cpython-312-darwin.so,sha256=
|
|
112
|
-
biotite/sequence/align/multiple.c,sha256=
|
|
113
|
-
biotite/sequence/align/pairwise.c,sha256=
|
|
114
|
-
biotite/sequence/align/kmertable.cpython-312-darwin.so,sha256=
|
|
115
|
-
biotite/sequence/align/tracetable.c,sha256=
|
|
108
|
+
biotite/sequence/align/permutation.c,sha256=v3AxgizrwZpHcsTPD8J-I7RqrUk10YPo3spK5IJkWa8,1283338
|
|
109
|
+
biotite/sequence/align/selector.cpython-312-darwin.so,sha256=c9CEYJ6uu73dt4wYkJKuKe8fCW1cYFD5CzxUfGLxWyM,343723
|
|
110
|
+
biotite/sequence/align/kmeralphabet.c,sha256=ZWPz7N4T8FJBoO-2RCnP1qhjk1Et7O9xv1m_DictdRg,1917328
|
|
111
|
+
biotite/sequence/align/kmeralphabet.cpython-312-darwin.so,sha256=TyG_uzIcb0SjP82sdyjWuWOwX0q1OqFFPaPxJlE-aNQ,396895
|
|
112
|
+
biotite/sequence/align/multiple.c,sha256=PBnwonh5gnO5p-U5VVBIPF5i_7bmrO7ihuXPRnlTGtQ,2282358
|
|
113
|
+
biotite/sequence/align/pairwise.c,sha256=s_HLHsa_lgkCAVkzDeB6968uMxMr74ZKsGd6dpTkAm0,2887229
|
|
114
|
+
biotite/sequence/align/kmertable.cpython-312-darwin.so,sha256=ie_azjUujHfBCuNRoaZ2tXbs_bJWKfY-gaw33LmCfxY,751948
|
|
115
|
+
biotite/sequence/align/tracetable.c,sha256=rbZlanIT1HdD_KxH6IJRg7nUxYJQ_k7jK7JxG1sfspw,1223496
|
|
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=
|
|
232
|
-
biotite/sequence/phylo/tree.cpython-312-darwin.so,sha256=
|
|
233
|
-
biotite/sequence/phylo/upgma.cpython-312-darwin.so,sha256=
|
|
231
|
+
biotite/sequence/phylo/nj.c,sha256=8frmEHeYny4HCk4UR3uXuuNuOSGDAX2JLfRFcvnTpfU,1228289
|
|
232
|
+
biotite/sequence/phylo/tree.cpython-312-darwin.so,sha256=ZHEHL0Gsco4TaIn9KVMUkIQxfPLI7l9lSc857MilL5s,301111
|
|
233
|
+
biotite/sequence/phylo/upgma.cpython-312-darwin.so,sha256=5nmwRAv8mMdMoeiLrWfpGac0GohekMHdsL-3AmMEOso,227704
|
|
234
234
|
biotite/sequence/phylo/__init__.py,sha256=BNU2f9wzpkX2VngUFux7A7CvnBkzU78ziMXLLVNsJuA,1260
|
|
235
|
-
biotite/sequence/phylo/upgma.c,sha256=
|
|
236
|
-
biotite/sequence/phylo/tree.c,sha256=
|
|
237
|
-
biotite/sequence/phylo/nj.cpython-312-darwin.so,sha256=
|
|
238
|
-
biotite/structure/
|
|
239
|
-
biotite/structure/
|
|
235
|
+
biotite/sequence/phylo/upgma.c,sha256=w6WqKGR9JJDEgxpw_bdDPqIhTFhdDGZiKVE2ZAPxB3s,1175817
|
|
236
|
+
biotite/sequence/phylo/tree.c,sha256=pEGiNEaigZ9EnF921UVqCPtEDD70Tcsys8i5R_N3zho,1220726
|
|
237
|
+
biotite/sequence/phylo/nj.cpython-312-darwin.so,sha256=qT4Mh-UaQbpuRCW3GzVAyuKkN0yyu1R0q6SYQn0_5xY,245669
|
|
238
|
+
biotite/structure/repair.py,sha256=5tWFQVdw2SGENO0eQexe4Dni_bDpZdT0UfA59rDgJGo,7736
|
|
239
|
+
biotite/structure/superimpose.py,sha256=UnXZVoUgucOnqD7PN3wdCmeS3zXZpNsXRpP9CH6oc1U,26153
|
|
240
|
+
biotite/structure/bonds.c,sha256=yOvABQgTID96vR0K31B1lcwM37c-2ci6CkiMROA1v3g,2559151
|
|
240
241
|
biotite/structure/chains.py,sha256=OdOLduRjKyP1GZvN_QjngWUC3hTYp3cMQuvyKuNRqj8,8807
|
|
241
242
|
biotite/structure/box.py,sha256=svbwAtZdH-10hPRWOACID_OM8-C329NCB__P0hZNwW8,18742
|
|
242
|
-
biotite/structure/charges.cpython-312-darwin.so,sha256=
|
|
243
|
+
biotite/structure/charges.cpython-312-darwin.so,sha256=nZkKEy6OK8ijixt2AruWjTVvQCyRdM7Sa57Rby2VevY,283530
|
|
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=
|
|
247
|
-
biotite/structure/
|
|
248
|
-
biotite/structure/
|
|
247
|
+
biotite/structure/celllist.c,sha256=_fwQFwcR7_cFnHTPlo7s2JC3CyWI94VGTvIQSvjPGN4,1576743
|
|
248
|
+
biotite/structure/sequence.py,sha256=s_ugDoGWYWTfUprxOOR-fv422qFkQFkOshLQ0yXXw4Q,4152
|
|
249
|
+
biotite/structure/bonds.cpython-312-darwin.so,sha256=4K7R1HNnHk8YaTfZpZYvvoHWQaoWjcdnweWt-rzh6tU,599608
|
|
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=
|
|
253
|
+
biotite/structure/charges.c,sha256=unOsjzh5wPfvU3HAl70guekkpBSuhZYk1p6Y8iemjhU,1414788
|
|
252
254
|
biotite/structure/density.py,sha256=TLKvLLbKRWDmH_A0mSFZeHkmbFb49lyyiL7Eeu-mLEg,4234
|
|
253
255
|
biotite/structure/rdf.py,sha256=dS99s-n_N9zunYn5AQffXdEkapmUizGkugGLj9EDXBo,8059
|
|
254
|
-
biotite/structure/celllist.cpython-312-darwin.so,sha256=
|
|
256
|
+
biotite/structure/celllist.cpython-312-darwin.so,sha256=u1eZOgVPkHZIm2LyhEqLWKSZfPWchIclSoTEiupnjeI,338555
|
|
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=
|
|
258
|
-
biotite/structure/filter.py,sha256=
|
|
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/sasa.cpython-312-darwin.so,sha256=
|
|
262
|
+
biotite/structure/sasa.cpython-312-darwin.so,sha256=0YKS6AnAs1K-Yn8x2zVQ-yQ6kj3IW0rkUNWY8nbIP_c,283031
|
|
261
263
|
biotite/structure/pseudoknots.py,sha256=C8Id-1QyNBDuQNRCumspE_RoXuDNqJ-eFEimuzFdLIo,22380
|
|
262
|
-
biotite/structure/basepairs.py,sha256=
|
|
263
|
-
biotite/structure/sasa.c,sha256=
|
|
264
|
-
biotite/structure/integrity.py,sha256=
|
|
264
|
+
biotite/structure/basepairs.py,sha256=7TK4E-PXjt0GwE1JOE_AUfKmbrUY1IE9Tc6I9HLpb2s,50148
|
|
265
|
+
biotite/structure/sasa.c,sha256=_aWNwnsiwPIN8O9f-PzHQj4OQbe1dha9R01s79VP0eI,1326808
|
|
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=
|
|
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=
|
|
271
|
-
biotite/structure/io/ctab.py,sha256
|
|
272
|
-
biotite/structure/io/general.py,sha256=
|
|
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/
|
|
278
|
-
biotite/structure/io/pdbx/
|
|
279
|
-
biotite/structure/io/pdbx/
|
|
279
|
+
biotite/structure/io/pdbx/encoding.cpython-312-darwin.so,sha256=Oiw4SDjV61uVEsQbyspNSRy7wF2BPVKNBL4Y7T1UteA,1141179
|
|
280
|
+
biotite/structure/io/pdbx/legacy.py,sha256=01mS2bA5_GptHDpe_F7_6IyueQ8_tlgB_X_m9dRa694,8842
|
|
281
|
+
biotite/structure/io/pdbx/bcif.py,sha256=u4F5FxpGIA0jR1gaG_SRGJNlLjHSo-xzueBcHfE_ukE,20379
|
|
282
|
+
biotite/structure/io/pdbx/convert.py,sha256=jrBqyx5vEnZLr81MXeZxjHrubmGzph3KNKYQm6c2Eyc,59757
|
|
283
|
+
biotite/structure/io/pdbx/__init__.py,sha256=2rl6Fn2aPcu8-2QtgIVzjCOPVdvCWfqZh3LJr43TUP8,714
|
|
284
|
+
biotite/structure/io/pdbx/cif.py,sha256=OuL9csoC1BsyMutILRnPL433LPvNxcTwnJcv-RzLpao,32437
|
|
285
|
+
biotite/structure/io/pdbx/component.py,sha256=vS_aicTCme52-nqfjJPz4ZhKhbBZYHU7kOVLUOU7ypA,8143
|
|
286
|
+
biotite/structure/io/pdbx/encoding.c,sha256=v7KkysQ7PY9SwYXZxDa_iR2hhFxloiU3xh0hAix2yt4,4735611
|
|
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=
|
|
283
|
-
biotite/structure/io/npz/file.py,sha256=
|
|
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=
|
|
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=
|
|
293
|
-
biotite/structure/io/mol/
|
|
294
|
-
biotite/structure/io/mol/
|
|
295
|
-
biotite/structure/io/mol/
|
|
296
|
-
biotite/structure/io/
|
|
297
|
-
biotite/structure/io/
|
|
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.cpython-312-darwin.so,sha256=PuYKKE1nCy09uX8DYGZUH1_9I8NqmX0JUOVADQiZIK4,211579
|
|
307
|
+
biotite/structure/io/pdb/hybrid36.c,sha256=QnVrzSl-4F2C33KonKXRql1jPMhbywHQVUoMwwCwgfM,1110875
|
|
298
308
|
biotite/structure/io/pdb/convert.py,sha256=jysm2PrrfyzYy3ZmkIiMuOEoaSdID5qDkJ7LHI3WavA,10659
|
|
299
|
-
biotite/structure/io/pdb/__init__.py,sha256=
|
|
300
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
301
|
-
biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so,sha256=
|
|
302
|
-
biotite/structure/io/mmtf/decode.cpython-312-darwin.so,sha256=
|
|
303
|
-
biotite/structure/io/mmtf/decode.c,sha256=
|
|
304
|
-
biotite/structure/io/mmtf/__init__.py,sha256=
|
|
305
|
-
biotite/structure/io/mmtf/encode.c,sha256=
|
|
306
|
-
biotite/structure/io/mmtf/convertarray.c,sha256=
|
|
307
|
-
biotite/structure/io/mmtf/encode.cpython-312-darwin.so,sha256=
|
|
308
|
-
biotite/structure/io/mmtf/file.py,sha256=
|
|
309
|
-
biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so,sha256=
|
|
309
|
+
biotite/structure/io/pdb/__init__.py,sha256=2qtLwVQu10AZhk-DUAqcIbvofyIC8BKGh4Gk9b_Ha70,732
|
|
310
|
+
biotite/structure/io/pdb/file.py,sha256=9dhv1uEApagyZsBKC1_yr0ARy8hfEnW5eJMpHX78-YM,48003
|
|
311
|
+
biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so,sha256=zq7SYKrbs1mT54y3Iswb8JE3QxsOCUpIkBm4Mvq1PHo,194767
|
|
312
|
+
biotite/structure/io/mmtf/decode.cpython-312-darwin.so,sha256=ik5S0OjERoJqSg9ul-kkhisAAORO0aDHoHxYNsagG14,282281
|
|
313
|
+
biotite/structure/io/mmtf/decode.c,sha256=BDGuw1WCM34muaY1E_dF2ViMVLZ4dYRuq6txhMO4Wec,1384063
|
|
314
|
+
biotite/structure/io/mmtf/__init__.py,sha256=5kmc5agVc7eCUhtA0DCKIj7eR8qlvaqIIaJXUHFnc6k,662
|
|
315
|
+
biotite/structure/io/mmtf/encode.c,sha256=nXQ1y_lAyCNYDsYQm5ixm_u2ay5xlz121ZhFOvdbTQs,1331887
|
|
316
|
+
biotite/structure/io/mmtf/convertarray.c,sha256=0dg8S6kjBUBn_nO0JUPHqQ3PBNCZjdw-QaaY-LlvaDE,674219
|
|
317
|
+
biotite/structure/io/mmtf/encode.cpython-312-darwin.so,sha256=zO9aUr-iLE3eHIJ4EX8fSJm840qnCMXo_gffIFsFzXM,262121
|
|
318
|
+
biotite/structure/io/mmtf/file.py,sha256=mMNUCXx6cKptqqcfteE_2i-e_PPwDAyVFLebZnvoQS4,6946
|
|
319
|
+
biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so,sha256=xSWLbNil5PvldgSxcRGsD4O6VlNkMeGqDtaHymgO844,355342
|
|
310
320
|
biotite/structure/io/mmtf/assembly.py,sha256=HYVy2Knir1TqWT_NfvrmUmR2UX8eFNzVmQImSLZP-7w,8184
|
|
311
|
-
biotite/structure/io/mmtf/convertfile.c,sha256=
|
|
312
|
-
biotite/structure/info/misc.py,sha256=
|
|
313
|
-
biotite/structure/info/carbohydrates.py,sha256=GQnIVS_hRK0zrlZ_o_xZD0TpNGPrH3_-Jv7hLXX_omI,1248
|
|
321
|
+
biotite/structure/io/mmtf/convertfile.c,sha256=u9-JtGA7telnuGEAp58NcY2zQOy3eYX_PXmruTJQj_k,1553363
|
|
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/
|
|
316
|
-
biotite/structure/info/
|
|
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=
|
|
323
|
-
biotite/structure/info/bonds.py,sha256=
|
|
324
|
-
biotite/structure/info/masses.py,sha256=
|
|
325
|
-
biotite/structure/info/
|
|
326
|
-
biotite/structure/info/
|
|
327
|
-
biotite/structure/info/
|
|
328
|
-
biotite/structure/info/
|
|
329
|
-
biotite/structure/info/
|
|
330
|
-
biotite/structure/info/
|
|
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
|