biotite 0.39.0__cp310-cp310-macosx_11_0_arm64.whl → 0.40.0__cp310-cp310-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/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/kmertable.cpython-310-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cpython-310-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cpython-310-darwin.so +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cpython-310-darwin.so +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cpython-310-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cpython-310-darwin.so +0 -0
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cpython-310-darwin.so +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- biotite/structure/bonds.cpython-310-darwin.so +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cpython-310-darwin.so +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cpython-310-darwin.so +0 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +25 -67
- biotite/structure/info/bonds.py +46 -100
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1646 -0
- biotite/structure/info/ccd/carbohydrates.txt +1133 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +797 -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 +11 -22
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +1 -1
- biotite/structure/io/general.py +37 -43
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +219 -198
- biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- 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 +5 -3
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +13 -6
- biotite/structure/io/pdbx/bcif.py +649 -0
- biotite/structure/io/pdbx/cif.py +1028 -0
- biotite/structure/io/pdbx/component.py +243 -0
- biotite/structure/io/pdbx/convert.py +707 -359
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cpython-310-darwin.so +0 -0
- biotite/structure/io/pdbx/error.py +14 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cpython-310-darwin.so +0 -0
- biotite/structure/superimpose.py +158 -115
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
- {biotite-0.39.0.dist-info → biotite-0.40.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.40.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
biotite-0.
|
|
2
|
-
biotite-0.
|
|
3
|
-
biotite-0.
|
|
4
|
-
biotite-0.
|
|
5
|
-
biotite-0.
|
|
1
|
+
biotite-0.40.0.dist-info/RECORD,,
|
|
2
|
+
biotite-0.40.0.dist-info/WHEEL,sha256=E2L8cNry8_qENFWMb8KxRWLe-RhZW94hLc32Xo3HiTg,110
|
|
3
|
+
biotite-0.40.0.dist-info/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
|
|
4
|
+
biotite-0.40.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
|
|
5
|
+
biotite-0.40.0.dist-info/METADATA,sha256=F_Wg3VF0txg1mUbDMmCGUR4_Omt6fNY_xpNmUqEeMoQ,7151
|
|
6
6
|
biotite/copyable.py,sha256=Rmsso_e9quxWc23SBQh2M45jTT36SerwSmt3ONng04M,1972
|
|
7
|
-
biotite/__init__.py,sha256=
|
|
7
|
+
biotite/__init__.py,sha256=xHwZNZlRcAlkSZFw6EMrVf5GqBoft7VfnmLDkqxF2Fo,522
|
|
8
8
|
biotite/visualize.py,sha256=mLME6fOGwdcUZLUzDTbwUpZokC4D1cVE6ICdtJDc0yw,9842
|
|
9
9
|
biotite/file.py,sha256=flQknYLaLSlbX38D8_I3fG9DAo4D3ExeoRzweMoZMno,7335
|
|
10
10
|
biotite/temp.py,sha256=AenIC7m3rrezikJDKgTEnLZigACubfsw_UcmYMGyGa8,2045
|
|
@@ -26,7 +26,7 @@ biotite/database/pubchem/download.py,sha256=rio_-ykW1xAZhhWcd-U88NYrwcI1lsJNrG75
|
|
|
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,10 +57,10 @@ 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=
|
|
60
|
+
biotite/sequence/codec.c,sha256=P4UdW9t94Bl2jhuap3YFelCf3RM7zyc74jBhpFqnOlg,1534101
|
|
61
61
|
biotite/sequence/annotation.py,sha256=h8e1IJhmHXoqs8yw1Y6QwFLrGcb5XF8ewDkkxPhThXo,29786
|
|
62
62
|
biotite/sequence/sequence.py,sha256=AbOf4a3ApXUBgflzYRux2nqpd6jDCXVAByUBkt9Jroo,11911
|
|
63
|
-
biotite/sequence/codec.cpython-310-darwin.so,sha256=
|
|
63
|
+
biotite/sequence/codec.cpython-310-darwin.so,sha256=CoXBDmHY-gWd-LZ7AzIBEKbBlTcbrt2JKwd3O5Fc_so,319096
|
|
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
|
|
66
66
|
biotite/sequence/__init__.py,sha256=jwkyw2DlOVCyeZAfT5V1P-q6lZN7c7kINhNbtF2tODs,3033
|
|
@@ -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=Mb_F7g83J5WxgTGGf9vinB_LVqSoxy9-pvtWN9fy6uI,2583643
|
|
88
|
+
biotite/sequence/align/localungapped.c,sha256=ojdoSgzcswnDdnhuxbVSTVYhH9k08iTs11gWRIqoHts,1610949
|
|
89
89
|
biotite/sequence/align/matrix.py,sha256=fYfhqeuMZJEYJsaTFgbRLnu3BBFx97UANfIhGxHT7l0,13287
|
|
90
90
|
biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
|
|
91
|
-
biotite/sequence/align/localgapped.c,sha256=
|
|
92
|
-
biotite/sequence/align/kmersimilarity.cpython-310-darwin.so,sha256=
|
|
93
|
-
biotite/sequence/align/tracetable.cpython-310-darwin.so,sha256=
|
|
91
|
+
biotite/sequence/align/localgapped.c,sha256=oLgJcmkuNBsJAzsm6bjKE0Y9jxHY8TnCJyfH90ssADg,4604705
|
|
92
|
+
biotite/sequence/align/kmersimilarity.cpython-310-darwin.so,sha256=dMhcOOQvcqFEL9xI3293hmwI7NrtUblPOaQ1T6gREEM,247585
|
|
93
|
+
biotite/sequence/align/tracetable.cpython-310-darwin.so,sha256=_ADbfQ7zZghF-paJcBLeXdNssmMNfZBG4BbzO5GXkmU,204813
|
|
94
94
|
biotite/sequence/align/alignment.py,sha256=MF_3R2MMjuwwvG7j4pybQjdPCTk2fAwg_4gW-muzKfA,21338
|
|
95
|
-
biotite/sequence/align/kmersimilarity.c,sha256=
|
|
96
|
-
biotite/sequence/align/selector.cpython-310-darwin.so,sha256=
|
|
97
|
-
biotite/sequence/align/kmeralphabet.cpython-310-darwin.so,sha256=
|
|
98
|
-
biotite/sequence/align/kmertable.cpp,sha256=
|
|
95
|
+
biotite/sequence/align/kmersimilarity.c,sha256=0eoswPgJDAV9VGDuqtOklNyXxDXIj2gtfRJ3Ao_YuA8,1257695
|
|
96
|
+
biotite/sequence/align/selector.cpython-310-darwin.so,sha256=p771J15yS-pv0hOm6zU7Ly622ycRDywaQbbMqy35OQE,343611
|
|
97
|
+
biotite/sequence/align/kmeralphabet.cpython-310-darwin.so,sha256=Mirx_q6-8nb-2G5SJLOshdfY6jQJ8U_ccucoeHvABy0,396863
|
|
98
|
+
biotite/sequence/align/kmertable.cpp,sha256=Fj3MS3HlCVdl1jq77Q2h1eQcuHWyN6Dqa6pCsVkHE5k,3035277
|
|
99
99
|
biotite/sequence/align/__init__.py,sha256=Xah34jQaYg0TPgzGnTqLPpPslx_y6CsgU836Ug5uUcM,1704
|
|
100
|
-
biotite/sequence/align/kmertable.cpython-310-darwin.so,sha256=
|
|
100
|
+
biotite/sequence/align/kmertable.cpython-310-darwin.so,sha256=UYoaxo5IQ2PAERHt7MwPFeEOOrVT-R98bxYeAzJ6O_E,751740
|
|
101
101
|
biotite/sequence/align/buckets.py,sha256=6vIIMRT3h3t8PWaJxT3TjtA_fKtYyalBv-E4OdDOy00,2422
|
|
102
102
|
biotite/sequence/align/cigar.py,sha256=Mk3kECMKkKWxLLgIZ1hkADsz_2AJJHrAPMulfKTCA9I,12915
|
|
103
|
-
biotite/sequence/align/selector.c,sha256=
|
|
104
|
-
biotite/sequence/align/pairwise.cpython-310-darwin.so,sha256=
|
|
105
|
-
biotite/sequence/align/banded.cpython-310-darwin.so,sha256=
|
|
106
|
-
biotite/sequence/align/localgapped.cpython-310-darwin.so,sha256=
|
|
107
|
-
biotite/sequence/align/localungapped.cpython-310-darwin.so,sha256=
|
|
103
|
+
biotite/sequence/align/selector.c,sha256=iuY74pbCkSqWQVoKo1bAtXNkdpYVF3m1Du1jUp8jJzE,1637723
|
|
104
|
+
biotite/sequence/align/pairwise.cpython-310-darwin.so,sha256=0ZHxBJc8s9ly1EoPPWd7DecbTFCNd2Wyze50mECrvP8,614523
|
|
105
|
+
biotite/sequence/align/banded.cpython-310-darwin.so,sha256=MZ34d9mizXm7jay_ERJPkNYBaffKsXYs0BDdwzb3fOU,578041
|
|
106
|
+
biotite/sequence/align/localgapped.cpython-310-darwin.so,sha256=O_XrK8_QYMMxabetiB861sy2U4X_VTOnLMya2Bcsfhk,1163854
|
|
107
|
+
biotite/sequence/align/localungapped.cpython-310-darwin.so,sha256=dR58LduVsG-T-xI4hOFzdL8MA2m3Bl1GxKbJNfyybJ0,321216
|
|
108
108
|
biotite/sequence/align/statistics.py,sha256=TalCx3RT8jozU56DMjNKM2Q-fkRiHVq4mI3Wy1YH93M,9732
|
|
109
|
-
biotite/sequence/align/permutation.c,sha256=
|
|
110
|
-
biotite/sequence/align/permutation.cpython-310-darwin.so,sha256=
|
|
111
|
-
biotite/sequence/align/multiple.cpython-310-darwin.so,sha256=
|
|
112
|
-
biotite/sequence/align/kmeralphabet.c,sha256=
|
|
113
|
-
biotite/sequence/align/multiple.c,sha256=
|
|
114
|
-
biotite/sequence/align/pairwise.c,sha256=
|
|
115
|
-
biotite/sequence/align/tracetable.c,sha256=
|
|
109
|
+
biotite/sequence/align/permutation.c,sha256=tAewWZuHCu_ZDR3LIwQMh8sOJgdY2-UxmMVVTMayumU,1283868
|
|
110
|
+
biotite/sequence/align/permutation.cpython-310-darwin.so,sha256=9PlihBqm1FUdxob2iDOXsMdvuxqrdQLwh0s5H4ezsBQ,250238
|
|
111
|
+
biotite/sequence/align/multiple.cpython-310-darwin.so,sha256=X9eRo0ctDHHJy5BsnK-kg8HIxVAJxOYdM7edKNLQOj8,546683
|
|
112
|
+
biotite/sequence/align/kmeralphabet.c,sha256=j2Ww7vgQE3ta1BA0NgJME1FEV1y1G4c2ERlndpXGE34,1917858
|
|
113
|
+
biotite/sequence/align/multiple.c,sha256=8kvJlczU_SW0VVeo6hvO3Py0rtZlyhZCTZHjAJESspQ,2280166
|
|
114
|
+
biotite/sequence/align/pairwise.c,sha256=pJ54T-x-Picp-BeSmWGMs2DKI1tCa5i28oXYom80Qsc,2887759
|
|
115
|
+
biotite/sequence/align/tracetable.c,sha256=EmbHzfM7Daf3pTBcN9Y5RWxVBAL8ta6XKapJ_P68CsU,1224026
|
|
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,64 +228,70 @@ 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=
|
|
231
|
+
biotite/sequence/phylo/nj.c,sha256=qe-Lb0gTTO3ERDjU1rAX784q25mJr1hog1-y1jaEcLU,1226152
|
|
232
232
|
biotite/sequence/phylo/__init__.py,sha256=BNU2f9wzpkX2VngUFux7A7CvnBkzU78ziMXLLVNsJuA,1260
|
|
233
|
-
biotite/sequence/phylo/nj.cpython-310-darwin.so,sha256=
|
|
234
|
-
biotite/sequence/phylo/tree.cpython-310-darwin.so,sha256=
|
|
235
|
-
biotite/sequence/phylo/upgma.cpython-310-darwin.so,sha256=
|
|
236
|
-
biotite/sequence/phylo/upgma.c,sha256=
|
|
237
|
-
biotite/sequence/phylo/tree.c,sha256=
|
|
238
|
-
biotite/structure/superimpose.py,sha256=
|
|
239
|
-
biotite/structure/bonds.c,sha256=
|
|
233
|
+
biotite/sequence/phylo/nj.cpython-310-darwin.so,sha256=fq5fywIXustIN6W7gTG8U9EMBfhapJxjaRpfQJ05_5o,229045
|
|
234
|
+
biotite/sequence/phylo/tree.cpython-310-darwin.so,sha256=PzoEc0ZsWmMojtjpYwtYWY71IKUTndDrcBSzqywIZqI,301623
|
|
235
|
+
biotite/sequence/phylo/upgma.cpython-310-darwin.so,sha256=gHLzmk3bXF552gLvHIaVTSbhbu6PpbT2UH_TxUf-_W8,227592
|
|
236
|
+
biotite/sequence/phylo/upgma.c,sha256=cyaV7Bw0hB5JO5somDm9V_bxoAQa2JYD-d511jeTzSI,1173680
|
|
237
|
+
biotite/sequence/phylo/tree.c,sha256=YIfbVuw_0dOjxYYPS-Tkn6cAYbW5j8H10j-5ZGVYPfw,1221256
|
|
238
|
+
biotite/structure/superimpose.py,sha256=ml5-GE8F2ozVgKsbB1LEVfi4P2WhpNGrxnkQUXL6C-4,9084
|
|
239
|
+
biotite/structure/bonds.c,sha256=bdjlZXpjQzPahYiheQ55tSDNPHPzp81c7iGuTWl_dX4,2541260
|
|
240
240
|
biotite/structure/chains.py,sha256=OdOLduRjKyP1GZvN_QjngWUC3hTYp3cMQuvyKuNRqj8,8807
|
|
241
241
|
biotite/structure/box.py,sha256=svbwAtZdH-10hPRWOACID_OM8-C329NCB__P0hZNwW8,18742
|
|
242
|
-
biotite/structure/celllist.cpython-310-darwin.so,sha256=
|
|
242
|
+
biotite/structure/celllist.cpython-310-darwin.so,sha256=xV12Z5nomhnuhAUrBF-pvYZRZ5fixEt1G0Nd84oqnvA,338427
|
|
243
243
|
biotite/structure/error.py,sha256=rdNJb21D9kPTSsbF3-RQmMGegjc46jXnYEvLDIPIXJw,774
|
|
244
244
|
biotite/structure/resutil.py,sha256=M7BkVAaBs3iHtFjopGQAxXbUrq_QSoeedhz7_z0ZDSg,5602
|
|
245
245
|
biotite/structure/util.py,sha256=0iSSG46xH3JmW83QRYUSZpO_hR5Yn9TpAA8-jajZsi8,2258
|
|
246
|
-
biotite/structure/celllist.c,sha256=
|
|
247
|
-
biotite/structure/sasa.cpython-310-darwin.so,sha256=
|
|
246
|
+
biotite/structure/celllist.c,sha256=QKAqp9S5fv8SE6OlmSEISsg9iy6muHnlifh04gBEf4E,1574606
|
|
247
|
+
biotite/structure/sasa.cpython-310-darwin.so,sha256=SIIIoGV4DTUMQnTOzqZUaho8lGqz2AYmDcoYJV_w0sY,282919
|
|
248
248
|
biotite/structure/__init__.py,sha256=DWftBI_fZjYUsHFdXhZI9TjqXtxHtkehwKq-Yh97iao,5277
|
|
249
249
|
biotite/structure/mechanics.py,sha256=wQIK33d6NhJNTxqr6fSashXrlraLJC3-xcfCXM6ZPqA,2702
|
|
250
250
|
biotite/structure/sse.py,sha256=8fa1-bRax5nZQKYRqr893ymn-Uv1SASg3yKx8HDi5dg,11963
|
|
251
|
-
biotite/structure/charges.c,sha256=
|
|
252
|
-
biotite/structure/charges.cpython-310-darwin.so,sha256=
|
|
251
|
+
biotite/structure/charges.c,sha256=8yY73BwAEnzLB-5KwOTgii0eIRzj8KbODAxqNIjrCE8,1415318
|
|
252
|
+
biotite/structure/charges.cpython-310-darwin.so,sha256=_Dvf_2bsXD_9_n9oMvhqYmkpG7fAUy28xUbQw5CudF0,283498
|
|
253
253
|
biotite/structure/density.py,sha256=TLKvLLbKRWDmH_A0mSFZeHkmbFb49lyyiL7Eeu-mLEg,4234
|
|
254
254
|
biotite/structure/rdf.py,sha256=dS99s-n_N9zunYn5AQffXdEkapmUizGkugGLj9EDXBo,8059
|
|
255
255
|
biotite/structure/transform.py,sha256=4xlUbN1JiLqw1Tc-qFKNWj2qBJb0jXadW_LuJWHcsQc,19767
|
|
256
256
|
biotite/structure/geometry.py,sha256=yWHq7u50_TqqpFpG4ARVZNqCal9JFJWnRyYADdvgEYs,25256
|
|
257
|
-
biotite/structure/molecules.py,sha256=
|
|
258
|
-
biotite/structure/filter.py,sha256=
|
|
257
|
+
biotite/structure/molecules.py,sha256=_p09r_BmyMs6QcbxrZhGuT2qwR8oQrgHV2OMQ5W7U9g,15478
|
|
258
|
+
biotite/structure/filter.py,sha256=k0BpA7E980Yzyt5EE8KQTlyhs0XOud3G5jdq6mRzTwM,18716
|
|
259
259
|
biotite/structure/atoms.py,sha256=dyIp5l5QuMcmqDcimNU94NsLF3zqZtbyK4dN-w1OLoc,48016
|
|
260
|
-
biotite/structure/bonds.cpython-310-darwin.so,sha256=
|
|
260
|
+
biotite/structure/bonds.cpython-310-darwin.so,sha256=HtLXqJEBqJkI9JbsuqKkdXUI-j0Ep2E9khYLvKRgHjo,582888
|
|
261
261
|
biotite/structure/pseudoknots.py,sha256=C8Id-1QyNBDuQNRCumspE_RoXuDNqJ-eFEimuzFdLIo,22380
|
|
262
|
-
biotite/structure/basepairs.py,sha256=
|
|
263
|
-
biotite/structure/sasa.c,sha256=
|
|
262
|
+
biotite/structure/basepairs.py,sha256=7TK4E-PXjt0GwE1JOE_AUfKmbrUY1IE9Tc6I9HLpb2s,50148
|
|
263
|
+
biotite/structure/sasa.c,sha256=T1WBb_dph5nY5hew8hbEp2_2wu5Dfp2lP0GB-U6BTds,1327338
|
|
264
264
|
biotite/structure/integrity.py,sha256=9XndLoDGyOxB6l16to5mv4sGyUyRTb2PxD_hxxPk_ec,10061
|
|
265
265
|
biotite/structure/compare.py,sha256=eBUGhlTSYApvoKoZ4LnMI5Ku2sB9aCeQ-V7Fcld4YiM,9502
|
|
266
266
|
biotite/structure/hbond.py,sha256=zkJ1NLaOGhpwUz7WFd6ATihlJ44GGEZ9rRc9JRZ_PzE,15162
|
|
267
267
|
biotite/structure/dotbracket.py,sha256=HEE79LzPeKNW2DXmg0VLfNCs8xmdc1Wlj8kebPep1H8,6837
|
|
268
268
|
biotite/structure/residues.py,sha256=dywbV7cTrJSNBAugC012gKrx_GrMZOcs7J76ojBM2AY,22370
|
|
269
269
|
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=
|
|
270
|
+
biotite/structure/io/__init__.py,sha256=ROMPxtVLBLjvMWskQefRcSjeLlzAJP9H1lTWokp9oIc,1034
|
|
271
|
+
biotite/structure/io/ctab.py,sha256=qXu205XQrTAgebYUlN_Zl4hOjxllGlHRRF7jzLS_PB8,4935
|
|
272
|
+
biotite/structure/io/general.py,sha256=Q0L4OcwnBFp0DU964pH0vlVBbWYwPr6gYsORyqBIgvU,9343
|
|
273
273
|
biotite/structure/io/dcd/__init__.py,sha256=APOO_JGG2CyUCLF4xCPmA-Ji79r4rAUaoSXajzkOEWg,387
|
|
274
274
|
biotite/structure/io/dcd/file.py,sha256=JLAOdn4LkTfXqIEvbwtRHiXvRcJYEcFwr7kaIKOmC-g,2170
|
|
275
275
|
biotite/structure/io/trr/__init__.py,sha256=ut-5WHHpk0n1Vs6zHhi4RnNHb3NQsLH8iVclcmkEbQE,358
|
|
276
276
|
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/
|
|
277
|
+
biotite/structure/io/pdbx/legacy.py,sha256=01mS2bA5_GptHDpe_F7_6IyueQ8_tlgB_X_m9dRa694,8842
|
|
278
|
+
biotite/structure/io/pdbx/error.py,sha256=uY2i4nscyB2_QwbUv_-T8i9-3xrxogFUQf2B4U6C1wo,380
|
|
279
|
+
biotite/structure/io/pdbx/bcif.py,sha256=s5oQuDPHjayUJdu1vnVMJaFlBoWZQRkia3DKMrik0oo,20416
|
|
280
|
+
biotite/structure/io/pdbx/convert.py,sha256=jx0PXMReJ0DzRGFuE3-SrgmKgcQQmX6OBzpRdPyBAyI,54801
|
|
281
|
+
biotite/structure/io/pdbx/__init__.py,sha256=dVWVJMjgOljsjYcoXtpyIcWnCX4qd4cxoZArK8h64DU,735
|
|
282
|
+
biotite/structure/io/pdbx/encoding.cpython-310-darwin.so,sha256=RwEw74CAKFCIVV7cfLyYF52JFDCGPQEyuZjAL20QOsc,1157387
|
|
283
|
+
biotite/structure/io/pdbx/cif.py,sha256=29QXV5gMJSiI1-pJOY7QINbdNgDMYknW9PJ6GVRUdtM,32248
|
|
284
|
+
biotite/structure/io/pdbx/component.py,sha256=jBFoQ9X6Sj-rSi1wBud2JebjlcsUr-KmqSQpfkJ28xQ,8080
|
|
285
|
+
biotite/structure/io/pdbx/encoding.c,sha256=XPUviwhkPf-vmz0coPpaosk5Ke3w-uTzRNl2_49SAo0,4736141
|
|
280
286
|
biotite/structure/io/tng/__init__.py,sha256=7JZqpfMSSlQItvolf_JGn2PRrAh1P_1AX1C18Oo5uww,356
|
|
281
287
|
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=
|
|
288
|
+
biotite/structure/io/npz/__init__.py,sha256=WBUmxbb3qaFjLdAQwzYhVI_vh8w7gMZRlcpNZBYBc0s,736
|
|
289
|
+
biotite/structure/io/npz/file.py,sha256=5xrKj7raPsby5U7sIyeilfsbCx0w_bcR8QG8anE2eQQ,4958
|
|
284
290
|
biotite/structure/io/xtc/__init__.py,sha256=nHU9y_f75FMJpnY9Gngu1J39dfbXF3fZsSulvpWK7Qk,356
|
|
285
291
|
biotite/structure/io/xtc/file.py,sha256=OTsBk_xscSgcThKrAYYjYqTDw-g4yM5WBr2PKBhnWS0,1298
|
|
286
292
|
biotite/structure/io/pdbqt/convert.py,sha256=IihHFIwMJuBrdGjZ6NRID8O8Ti-3QgILX184rMaYHzY,4027
|
|
287
293
|
biotite/structure/io/pdbqt/__init__.py,sha256=n0-GSBidNVDNOsTo3oHGSv6agAFn2_duOvwykSX3mlc,440
|
|
288
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
294
|
+
biotite/structure/io/pdbqt/file.py,sha256=mSeaAXfgYH0SDKTiIH-TvKgMbJeWkoUbqngE7RHKu7Q,26399
|
|
289
295
|
biotite/structure/io/netcdf/__init__.py,sha256=Vzr56ymoVeSlXqEF-nhPJFPBjxSFWuyD9uy8QpzhFyU,349
|
|
290
296
|
biotite/structure/io/netcdf/file.py,sha256=AW2TX7qubiDqI27Q9zknC4zE5mrZetjk8U6QNhqUnpg,2156
|
|
291
297
|
biotite/structure/io/gro/__init__.py,sha256=lY39nljfVlWbHsR4RKAM3rRJzZdQliRevVzZM1MT-eY,407
|
|
@@ -293,41 +299,37 @@ biotite/structure/io/gro/file.py,sha256=TiPUGb1_kMLGtkKO_7xXYmZ6v7KYcLzgyDlk6OkL
|
|
|
293
299
|
biotite/structure/io/mol/convert.py,sha256=BMMq4W2765XwglI0RxDSDUbpk_fuQNPmpsBbGWGaNMQ,1305
|
|
294
300
|
biotite/structure/io/mol/__init__.py,sha256=DT2L1kMbZeUKt6OgWOaI9pn1h5sP3qkXcdRM-qMdRXY,541
|
|
295
301
|
biotite/structure/io/mol/file.py,sha256=ljV4rpbUv7o9lUvWxT06HmNs9wbfT4a-QrAWYzDDF-Q,7388
|
|
296
|
-
biotite/structure/io/pdb/hybrid36.c,sha256=
|
|
302
|
+
biotite/structure/io/pdb/hybrid36.c,sha256=QnVrzSl-4F2C33KonKXRql1jPMhbywHQVUoMwwCwgfM,1110875
|
|
297
303
|
biotite/structure/io/pdb/convert.py,sha256=jysm2PrrfyzYy3ZmkIiMuOEoaSdID5qDkJ7LHI3WavA,10659
|
|
298
|
-
biotite/structure/io/pdb/__init__.py,sha256=
|
|
299
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
300
|
-
biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so,sha256=
|
|
301
|
-
biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so,sha256=
|
|
302
|
-
biotite/structure/io/mmtf/encode.cpython-310-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/file.py,sha256=
|
|
308
|
-
biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so,sha256=
|
|
304
|
+
biotite/structure/io/pdb/__init__.py,sha256=2qtLwVQu10AZhk-DUAqcIbvofyIC8BKGh4Gk9b_Ha70,732
|
|
305
|
+
biotite/structure/io/pdb/file.py,sha256=7lbstiopNSpu-lyDHPN7MDtxpBRX014Ag5pIHoOuhc4,46016
|
|
306
|
+
biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so,sha256=u7b0Wg4l-FSku2rAqIdg4ig_0EcqylFOy1PcWHEmzeU,211467
|
|
307
|
+
biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so,sha256=r4sIhwa4UU7ZWPDD5rmHiqsTUnm0mlsf7AfRgYjv368,355326
|
|
308
|
+
biotite/structure/io/mmtf/encode.cpython-310-darwin.so,sha256=-Jr8QCMxlpv3nDDCnIfrNnfHIaZedxdKncBoL2v4NPU,261993
|
|
309
|
+
biotite/structure/io/mmtf/decode.c,sha256=a9wDozlJqFNF3_af58cIbWofKkgfMMKejdV01ZW_xnc,1384593
|
|
310
|
+
biotite/structure/io/mmtf/__init__.py,sha256=5kmc5agVc7eCUhtA0DCKIj7eR8qlvaqIIaJXUHFnc6k,662
|
|
311
|
+
biotite/structure/io/mmtf/encode.c,sha256=ZOIF-v-0fogv4qLOWpN7vu2VqzCIipL3i5svYp2EOUg,1332417
|
|
312
|
+
biotite/structure/io/mmtf/convertarray.c,sha256=t0E2biFauJbYy0qaoWlWaLpVOLUzNubimsZ3JU5FoBw,674749
|
|
313
|
+
biotite/structure/io/mmtf/file.py,sha256=mMNUCXx6cKptqqcfteE_2i-e_PPwDAyVFLebZnvoQS4,6946
|
|
314
|
+
biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so,sha256=72aGk0SMkq-7AlzCgLQHAyHvcQI57vXMlcKDKRoMSIQ,194671
|
|
309
315
|
biotite/structure/io/mmtf/assembly.py,sha256=HYVy2Knir1TqWT_NfvrmUmR2UX8eFNzVmQImSLZP-7w,8184
|
|
310
|
-
biotite/structure/io/mmtf/decode.cpython-310-darwin.so,sha256=
|
|
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
|
|
316
|
+
biotite/structure/io/mmtf/decode.cpython-310-darwin.so,sha256=gdD3OcXOoGry1yCazq_rLf1acNrR6qk4n9tbyMNgY5o,282169
|
|
317
|
+
biotite/structure/io/mmtf/convertfile.c,sha256=3pWiCXYr_vErXMR-KZnM10rhBYqsrybq5LqoYOOHcjQ,1553893
|
|
318
|
+
biotite/structure/info/misc.py,sha256=MLYXpMlZRig9-gk-8fy5k10H7T0stpKnQ3h9uDMxNMA,1841
|
|
314
319
|
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
|
|
320
|
+
biotite/structure/info/__init__.py,sha256=k57tfM03apKfR3UlJMoDXZHS6jilhkeni1DoQa_nWLs,702
|
|
321
|
+
biotite/structure/info/groups.py,sha256=RTJvSclZGxQkcsOH6ML43QWCBkeUQKE4eNSge8MHgPE,2043
|
|
321
322
|
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/
|
|
323
|
+
biotite/structure/info/standardize.py,sha256=AaYn7mx6Y6NylkeOg1kIpyNoI-KrWbGSXXu_GEcSAZw,7772
|
|
324
|
+
biotite/structure/info/bonds.py,sha256=h32B-0-4zEs9e_ZrGyIXP_Rp4IXf6u_Cm0k-DgbC5pI,4644
|
|
325
|
+
biotite/structure/info/masses.py,sha256=dnZbg4k_89SuTwFUulyTKAL6Mnk4POPMIVhJLl5xswA,4489
|
|
326
|
+
biotite/structure/info/atoms.py,sha256=3a_Cp7sRKwRq6rzl1uvX9Ak1fzTzLdZdJdx4zXx_1JM,2427
|
|
327
|
+
biotite/structure/info/ccd.py,sha256=26BnKJEGH6Bhmvkll_ev6HSCIi0hNx_cs_N9hqNXP-4,2754
|
|
328
|
+
biotite/structure/info/ccd/components.bcif,sha256=2exbF1n0jReJ3JTI9YYPzjxCtrIu3Z6myll-w3JOQRU,35086693
|
|
329
|
+
biotite/structure/info/ccd/amino_acids.txt,sha256=AC0v3vCBdzSzC0nQZ_jCXGviuBi_9PHUGqLe_regyMY,6591
|
|
330
|
+
biotite/structure/info/ccd/README.rst,sha256=sfFRGesjpATIp5S8kiEV7cr-Jb51fWLGT4KypmzsoPM,342
|
|
331
|
+
biotite/structure/info/ccd/carbohydrates.txt,sha256=2rAtgJ4vu_SPY_3dZOZkioBXs4lDPPY8FKfINPStFmk,4532
|
|
332
|
+
biotite/structure/info/ccd/nucleotides.txt,sha256=x02Y7eWP4JiR-Fw5qXltSUd-UbTQxNWuQUjr67f46RM,3132
|
|
331
333
|
biotite/structure/graphics/__init__.py,sha256=YwMT8-c2DjrkcwyK6jPeDtAKxQda0OhElnwk8J0y3Hc,353
|
|
332
334
|
biotite/structure/graphics/rna.py,sha256=bhIHoB_9sFuZPrHQ8qQnToRiTCfgQ7JLVNIdsQVvkw8,11888
|
|
333
335
|
biotite/structure/graphics/atoms.py,sha256=nMhbmnjytxEDkxTTm2wHM2dObSw3izjvRbqssCW876E,8171
|