biotite 0.39.0__cp312-cp312-win_amd64.whl → 0.40.0__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.c +241 -220
- biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +213 -194
- biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +231 -203
- biotite/sequence/align/localgapped.c +256 -235
- biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +233 -212
- biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +253 -232
- biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +272 -251
- biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +213 -194
- biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +215 -195
- biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +213 -193
- biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/nj.c +213 -194
- biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +225 -200
- biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +213 -194
- biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1173 -1224
- biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +215 -195
- biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
- biotite/structure/charges.c +1050 -1099
- biotite/structure/charges.cp312-win_amd64.pyd +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 +217 -196
- biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +215 -195
- biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +223 -202
- biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +213 -194
- biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +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.cp312-win_amd64.pyd +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 +112803 -0
- biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +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 +213 -194
- biotite/structure/sasa.cp312-win_amd64.pyd +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,4 +1,4 @@
|
|
|
1
|
-
biotite/__init__.py,sha256=
|
|
1
|
+
biotite/__init__.py,sha256=idLYRVttRoHGTws624jHvtwxXEg0zyjQek4xaHbip1s,541
|
|
2
2
|
biotite/copyable.py,sha256=bS6JvqiG2G-8Kav7hzJb2mhO0mSpgjFvm_LD_t9dTLA,2042
|
|
3
3
|
biotite/file.py,sha256=M7FlQdNOUjDOBjkLMrzPq-xljwEFe93jFCLrFV6rprw,7578
|
|
4
4
|
biotite/temp.py,sha256=zROAfIdwaqso8_cvpVkCM37LNtzpke-XIoidHZkDnuY,2130
|
|
@@ -17,7 +17,7 @@ biotite/application/blast/webapp.py,sha256=J_uRQMFMdCOyGP-kEaXRNLgDHopUU68Wcuru5
|
|
|
17
17
|
biotite/application/clustalo/__init__.py,sha256=11hGCckaAM6MOv9krf585L5-7JAgRMJv2bxv3UlrgAQ,336
|
|
18
18
|
biotite/application/clustalo/app.py,sha256=hUA_bFHf_5M-Ath6brNC4-BzI0fdWS04AhDE_pV7M_U,8068
|
|
19
19
|
biotite/application/dssp/__init__.py,sha256=ILnVuoQhzPQRXDyDVVu2_I4xCejdRtQY8PbsM1UExos,333
|
|
20
|
-
biotite/application/dssp/app.py,sha256=
|
|
20
|
+
biotite/application/dssp/app.py,sha256=g2z5u8bty5NxVNufaYavBECg65UlqWpSn98BShblxFg,4980
|
|
21
21
|
biotite/application/mafft/__init__.py,sha256=AtmjXcE6WsWc8JxbcmUtIHDqPBh8cH1XTZrxWlEihx8,325
|
|
22
22
|
biotite/application/mafft/app.py,sha256=YUuKdY7ELYQUfzO6CZ6TkqDKP3WDx_nyggVaBbkKASQ,3622
|
|
23
23
|
biotite/application/muscle/__init__.py,sha256=22UWh76stefAwlwMayawfD9kJTjlsXdUfgrsnVze8Bw,349
|
|
@@ -46,7 +46,7 @@ biotite/database/pubchem/error.py,sha256=rC91vT5WHPwdanldwLMJWUrYkdFDCZkjCiEHy_W
|
|
|
46
46
|
biotite/database/pubchem/query.py,sha256=JhmrlulVF0FAFf92fmCipXkMALqTZgv9EV93pDcDxvs,27267
|
|
47
47
|
biotite/database/pubchem/throttle.py,sha256=GK-x6_zV7gJ3gUyxEUSbO8YbT5J6Oj3XIB5zs5ZoU1c,3643
|
|
48
48
|
biotite/database/rcsb/__init__.py,sha256=qb0x-Z4npqOyGi5nY5A-66xXb7woPSy1M2d_jVadRj4,343
|
|
49
|
-
biotite/database/rcsb/download.py,sha256=
|
|
49
|
+
biotite/database/rcsb/download.py,sha256=ZlbYbAvCsri4NnpDvaLeCSTJUSlz6etQOExd_301rN0,6163
|
|
50
50
|
biotite/database/rcsb/query.py,sha256=CzV9YOujbyjmIv-2OuLVJN3iHC4WiOAaNcZfnPC7muc,34023
|
|
51
51
|
biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
|
|
52
52
|
biotite/database/uniprot/check.py,sha256=wmxqqAV9NkEHlC4st4uP9yqhrjJ26uFQfuJM1ItFqIk,1278
|
|
@@ -55,8 +55,8 @@ biotite/database/uniprot/query.py,sha256=283jqn5qr_Lfsi5oUQ-LkK5Cutauy8kDih26rZd
|
|
|
55
55
|
biotite/sequence/__init__.py,sha256=K2I_Ds-pEmY25pEbzrIKCUMt9De2pPOG-hoMfsxn8nQ,3106
|
|
56
56
|
biotite/sequence/alphabet.py,sha256=-f1p9hVGEgFbjawce2J3Ybug5VY2hkZiN3gPujeYStU,18350
|
|
57
57
|
biotite/sequence/annotation.py,sha256=fuhMCjQ_MBkVyTyx4nU_VaGRgVr-u448KZ2G8Q_CVgY,30615
|
|
58
|
-
biotite/sequence/codec.c,sha256=
|
|
59
|
-
biotite/sequence/codec.cp312-win_amd64.pyd,sha256=
|
|
58
|
+
biotite/sequence/codec.c,sha256=Mt8uEG8No4rq7DQFmRiSh2Yuo5oBjY6LbMLrOlunmwE,1528672
|
|
59
|
+
biotite/sequence/codec.cp312-win_amd64.pyd,sha256=UzdpGqqvwgFcd9bsMvxIYIHoiGnoBOKmTHXdWXfN_Ac,249856
|
|
60
60
|
biotite/sequence/codon.py,sha256=g3CfUkCbzm0kwDf0jsQdOk0RBKU9B4HvJEq5bCqTvRc,16921
|
|
61
61
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
62
62
|
biotite/sequence/profile.py,sha256=a455N4r1ua9e5tDZIp8u014ELxZE-Sxw_IUeCuqjgrQ,17269
|
|
@@ -65,33 +65,33 @@ biotite/sequence/seqtypes.py,sha256=NjBXwpTer2PhcEwngpWBYwYwR6yj3N_7JTILIoG3UNM,
|
|
|
65
65
|
biotite/sequence/sequence.py,sha256=aRA8oHwWt8xyC8mHD0vPNpbYJiihyanD1hkUl9-qrfo,12285
|
|
66
66
|
biotite/sequence/align/__init__.py,sha256=0nXg-din6JaXqPAZsv9yf0F7YICjNsXTc4erZotaF10,1752
|
|
67
67
|
biotite/sequence/align/alignment.py,sha256=IiD_v_N10M3xRn2Xn5BdPT3E7dRIS7Qsne0WQUWWRks,21995
|
|
68
|
-
biotite/sequence/align/banded.c,sha256=
|
|
69
|
-
biotite/sequence/align/banded.cp312-win_amd64.pyd,sha256=
|
|
68
|
+
biotite/sequence/align/banded.c,sha256=aqslXcoGJ8mYiaVpBHYjSbSHLi6ZEtSCwlQvAHHE-Rw,2578219
|
|
69
|
+
biotite/sequence/align/banded.cp312-win_amd64.pyd,sha256=koJmWO14oX5PIwnMF26-mf9vZkpESToFZ8KEpf4sPkQ,503296
|
|
70
70
|
biotite/sequence/align/buckets.py,sha256=smW_ioFzL_tkc1ybfzbmLVujgEBFeESCZSXc4Fx9KIs,2490
|
|
71
71
|
biotite/sequence/align/cigar.py,sha256=jx5Str7TTIfRPZwvIk-JLE8_cueVMoobokAweq5TUv4,13303
|
|
72
|
-
biotite/sequence/align/kmeralphabet.c,sha256=
|
|
73
|
-
biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd,sha256=
|
|
74
|
-
biotite/sequence/align/kmersimilarity.c,sha256=
|
|
75
|
-
biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd,sha256=
|
|
76
|
-
biotite/sequence/align/kmertable.cp312-win_amd64.pyd,sha256=
|
|
77
|
-
biotite/sequence/align/kmertable.cpp,sha256=
|
|
78
|
-
biotite/sequence/align/localgapped.c,sha256=
|
|
79
|
-
biotite/sequence/align/localgapped.cp312-win_amd64.pyd,sha256=
|
|
80
|
-
biotite/sequence/align/localungapped.c,sha256=
|
|
81
|
-
biotite/sequence/align/localungapped.cp312-win_amd64.pyd,sha256=
|
|
72
|
+
biotite/sequence/align/kmeralphabet.c,sha256=DwfIRkjBpa86Nn-CJgkS3q22KYrGrgTfYrCdyIqoMgE,1912434
|
|
73
|
+
biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd,sha256=9KZybfvmYIrWtriELuvQa9LX5SboJR8GlIa0B_QPd3c,307712
|
|
74
|
+
biotite/sequence/align/kmersimilarity.c,sha256=UauN2TJvkX6ZRKr5hwAjP5gLEelt9Nc2ZYy_Hf6sSaI,1254931
|
|
75
|
+
biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd,sha256=9MVCsJZ5b6mZUoMDSudavG0Op96mIj97bBNJxgG8ilA,175104
|
|
76
|
+
biotite/sequence/align/kmertable.cp312-win_amd64.pyd,sha256=2DYld4n46HLw3mfdGLz0uQCOijbpp1g4OBEyv-xZMic,590336
|
|
77
|
+
biotite/sequence/align/kmertable.cpp,sha256=hK22VWwdnRHFnBzj-bUjd_EmAfOyvXv33cq4qHg-_Oc,3032513
|
|
78
|
+
biotite/sequence/align/localgapped.c,sha256=mmyTKzIfHL09sj_-Ye0XD9_L_3HRP3z2d78mmuhSGDU,4599281
|
|
79
|
+
biotite/sequence/align/localgapped.cp312-win_amd64.pyd,sha256=2hQw06lRnOvIkXDDtIyGXOvCYCroyz7gHtuFTDSLlSE,960512
|
|
80
|
+
biotite/sequence/align/localungapped.c,sha256=il6k5FxwTaU3jXkElignJ4j22EO7jU-6B3SH1kT9EMU,1605525
|
|
81
|
+
biotite/sequence/align/localungapped.cp312-win_amd64.pyd,sha256=vCqG_ELlZtG3mnYOLSlIZaW2FcxUOf9BYU0-L0hOUYk,262144
|
|
82
82
|
biotite/sequence/align/matrix.py,sha256=LAh-OYS5Lsp_P9M-Zk31785Dz2LVb8C6mJr5P6mBY9o,13692
|
|
83
|
-
biotite/sequence/align/multiple.c,sha256=
|
|
84
|
-
biotite/sequence/align/multiple.cp312-win_amd64.pyd,sha256=
|
|
85
|
-
biotite/sequence/align/pairwise.c,sha256=
|
|
86
|
-
biotite/sequence/align/pairwise.cp312-win_amd64.pyd,sha256=
|
|
87
|
-
biotite/sequence/align/permutation.c,sha256=
|
|
88
|
-
biotite/sequence/align/permutation.cp312-win_amd64.pyd,sha256=
|
|
83
|
+
biotite/sequence/align/multiple.c,sha256=arESEQ_0ZhNeTfsdXClu8KFx561_Z8prvrasIY4hqAc,2277464
|
|
84
|
+
biotite/sequence/align/multiple.cp312-win_amd64.pyd,sha256=h_U68dpzS8B-VI6Ety4pvqWxQ1U63XvZVwsA0yQpuCo,406528
|
|
85
|
+
biotite/sequence/align/pairwise.c,sha256=VuP4nBdJie2ed8VJ0owjEgje0002mMxsWJs4SbYwygs,2882335
|
|
86
|
+
biotite/sequence/align/pairwise.cp312-win_amd64.pyd,sha256=T3W_g_bujwwTGj6hr2DfabQrlxXsgpceFNZ1xXWtafY,550912
|
|
87
|
+
biotite/sequence/align/permutation.c,sha256=XJfIqWvoIpjXeodtKo7wccdAVdcfJpJ9SzCUFYhxz9Y,1278444
|
|
88
|
+
biotite/sequence/align/permutation.cp312-win_amd64.pyd,sha256=ccHzyIpKG2lbey8dRJ2NS9d2SYmDM9ugHUAyw-HYYYQ,181760
|
|
89
89
|
biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
|
|
90
|
-
biotite/sequence/align/selector.c,sha256=
|
|
91
|
-
biotite/sequence/align/selector.cp312-win_amd64.pyd,sha256=
|
|
90
|
+
biotite/sequence/align/selector.c,sha256=phj9WfwwNyYhIBR51zH13Z_XIOqf1YOP6yOQwFrWotw,1632299
|
|
91
|
+
biotite/sequence/align/selector.cp312-win_amd64.pyd,sha256=L2wWmk1aR--fqw0gCQOoGt4u3kCGCxpFFRT2e5DzArA,256512
|
|
92
92
|
biotite/sequence/align/statistics.py,sha256=m8O15sp8ENnyM_PcJEmiTy0lJ9O9h9-Cw3FEIzQXpVY,9996
|
|
93
|
-
biotite/sequence/align/tracetable.c,sha256=
|
|
94
|
-
biotite/sequence/align/tracetable.cp312-win_amd64.pyd,sha256=
|
|
93
|
+
biotite/sequence/align/tracetable.c,sha256=ZEPKg2MW22Wzg55AI8_AssqGDWbH557g-JIuSRqqGg4,1218598
|
|
94
|
+
biotite/sequence/align/tracetable.cp312-win_amd64.pyd,sha256=bVBQQE9jHXcZc1pSOdgtJREKmWELw-TWmfVUEWC7mUo,150528
|
|
95
95
|
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
|
|
96
96
|
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
|
|
97
97
|
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
|
|
@@ -224,110 +224,112 @@ biotite/sequence/io/gff/__init__.py,sha256=8VlLeqLj707W2Df_2heO8GLRFr1w6VZZdZYC0
|
|
|
224
224
|
biotite/sequence/io/gff/convert.py,sha256=2pQ15ZndbMd2zdlHu9wkbXJek8prcWWxWVNVtDvpVxc,4831
|
|
225
225
|
biotite/sequence/io/gff/file.py,sha256=Vs6J_tFVsouke9Vfw4Gr84pVEnY2fZwAczzG9DXOWlg,16501
|
|
226
226
|
biotite/sequence/phylo/__init__.py,sha256=aQFrdnlkwdrI-7JaU74puj3Jd9n8YOb8xBr_MWgRJqg,1295
|
|
227
|
-
biotite/sequence/phylo/nj.c,sha256=
|
|
228
|
-
biotite/sequence/phylo/nj.cp312-win_amd64.pyd,sha256=
|
|
229
|
-
biotite/sequence/phylo/tree.c,sha256=
|
|
230
|
-
biotite/sequence/phylo/tree.cp312-win_amd64.pyd,sha256=
|
|
231
|
-
biotite/sequence/phylo/upgma.c,sha256=
|
|
232
|
-
biotite/sequence/phylo/upgma.cp312-win_amd64.pyd,sha256=
|
|
227
|
+
biotite/sequence/phylo/nj.c,sha256=Sd5knZ5lOhWu9FIOUt5d5ZbJzG8j8OkjLUvEc_j5DAc,1223395
|
|
228
|
+
biotite/sequence/phylo/nj.cp312-win_amd64.pyd,sha256=01nR_fGb7ZT-zCJq4HAZG8o_f9tZ2LbrloslAYJukdE,169984
|
|
229
|
+
biotite/sequence/phylo/tree.c,sha256=hToHUDU2D4M3vMA4ZXD9cq_XcGLwxJEZ5w0UDxAQEAM,1215832
|
|
230
|
+
biotite/sequence/phylo/tree.cp312-win_amd64.pyd,sha256=2S0KC4nH_ksmXghojqNNLVKuPiy_Zv4nXCZSxqqJVG8,210432
|
|
231
|
+
biotite/sequence/phylo/upgma.c,sha256=p2iBY_bEpbVpNe2yysATmExW2QeaoHSJPo-NjUt6GTs,1170923
|
|
232
|
+
biotite/sequence/phylo/upgma.cp312-win_amd64.pyd,sha256=XBTBjKLcANubSIlKvihM7w4iqIsMqLfZ-HIN9IzELjQ,162816
|
|
233
233
|
biotite/structure/__init__.py,sha256=be3CpUHUIzDLFCLWJxgfzqmy4PkjvMZx9evI1ORcRfI,5407
|
|
234
234
|
biotite/structure/atoms.py,sha256=7sE_YceqnjoC0fxiIaOc9woujWdvIjb6Dfi2L8hG71I,49471
|
|
235
|
-
biotite/structure/basepairs.py,sha256=
|
|
236
|
-
biotite/structure/bonds.c,sha256=
|
|
237
|
-
biotite/structure/bonds.cp312-win_amd64.pyd,sha256=
|
|
235
|
+
biotite/structure/basepairs.py,sha256=s6h7uSKmuiT6yRyVB1bBuH_xjoRnOSHaRuTgdC0BUbA,51563
|
|
236
|
+
biotite/structure/bonds.c,sha256=ih751n3IW8x9xxP1Mm706Yvxn9lZqY_RD21OHRqqvgE,2538476
|
|
237
|
+
biotite/structure/bonds.cp312-win_amd64.pyd,sha256=qR4oCZXG-nGGfQtgAGvVcXUXW8PUwaQ_QGwVpRvVRjI,464384
|
|
238
238
|
biotite/structure/box.py,sha256=5mt25oCUd_GG4j_TBRaT6w__IQGjg-sFYiw4h-Iw7nA,19333
|
|
239
|
-
biotite/structure/celllist.c,sha256=
|
|
240
|
-
biotite/structure/celllist.cp312-win_amd64.pyd,sha256=
|
|
239
|
+
biotite/structure/celllist.c,sha256=ZEA6TaJJ22hlfUB8V8f3-g0oGDziMQWI0AXGslnGhOs,1571844
|
|
240
|
+
biotite/structure/celllist.cp312-win_amd64.pyd,sha256=zC4UZYBrh7b3D9dQ9PjosybpDMZhPyAToV0-67fxgHQ,251392
|
|
241
241
|
biotite/structure/chains.py,sha256=fiAmT6J8BlfmdAtajOd_QVU0qriCwE7QPe4KsVxbXo8,9104
|
|
242
|
-
biotite/structure/charges.c,sha256=
|
|
243
|
-
biotite/structure/charges.cp312-win_amd64.pyd,sha256=
|
|
242
|
+
biotite/structure/charges.c,sha256=OceOVD0mTe3G07WWbZsOxfrjHRrllDYMdVeys5F1DNQ,1409889
|
|
243
|
+
biotite/structure/charges.cp312-win_amd64.pyd,sha256=Umw5WUNhizDrcm7V3GRwWHCulenF21Am_wWz1GH8I4g,211968
|
|
244
244
|
biotite/structure/compare.py,sha256=4OoYgAUNkMdC91-4lNMkdyV3xtp-QtIGxrzIwUVIUuA,9775
|
|
245
245
|
biotite/structure/density.py,sha256=zhpce1XIsD0Q4D6Sxu1vbelhTyD1o7p1cxFD2Z0xf3s,4348
|
|
246
246
|
biotite/structure/dotbracket.py,sha256=aaWreB2Iih7i_zCtQuySkG4dVFO8BkSHmlpWv7O2jtQ,7051
|
|
247
247
|
biotite/structure/error.py,sha256=nr7GT-wS7_lHE9Ls4PGp_6rUYwlHNYo31L7zEkPYj2k,805
|
|
248
|
-
biotite/structure/filter.py,sha256=
|
|
248
|
+
biotite/structure/filter.py,sha256=fy_G_XPvp98xKumeAb_GvRGUcTS9iYXINu7IMFMqBtw,19301
|
|
249
249
|
biotite/structure/geometry.py,sha256=u4nizcSsSSTAVV2NJ6zt_VcGYcvRsp_OGp87JAP-dek,25953
|
|
250
250
|
biotite/structure/hbond.py,sha256=K3YM_-ixIxULSrCNLBfXvsda163uh7ToHFOB70If7eg,15571
|
|
251
251
|
biotite/structure/integrity.py,sha256=D-uAKvCMQDqairRbXP2hMToSDI25WJnwIME1iLdxyFQ,10380
|
|
252
252
|
biotite/structure/mechanics.py,sha256=LdwNnVXvDEwxqHT0U7uZ6QHU0PijDgGeN7EYY-ZXo8U,2776
|
|
253
|
-
biotite/structure/molecules.py,sha256=
|
|
253
|
+
biotite/structure/molecules.py,sha256=hLcPcRLGsXTgX-EZEG87KBuZ5r90eEzwS0yDFnRHbjc,15831
|
|
254
254
|
biotite/structure/pseudoknots.py,sha256=xYVjdVHbSt_8-ivTXlv0d1ZvECAMpzt01n8VELA-xCg,23022
|
|
255
255
|
biotite/structure/rdf.py,sha256=lVmDv56xmpaZdmyBNtnN4TxtyNGMKq9yKxdBmlb71Sk,8302
|
|
256
256
|
biotite/structure/residues.py,sha256=TQlKuP9ZQ2ifevoFDWp5wKQju69Zu5oCPicW0oq-dnw,22932
|
|
257
257
|
biotite/structure/resutil.py,sha256=9qz2bD0Grdm5LXiwDw7ElwGzPAfKJ_tnpcgyby9HozU,5780
|
|
258
|
-
biotite/structure/sasa.c,sha256=
|
|
259
|
-
biotite/structure/sasa.cp312-win_amd64.pyd,sha256=
|
|
258
|
+
biotite/structure/sasa.c,sha256=EgHog1WvpHwQhfLjauLKmVma6aWcBjHIdmlqChEBAUE,1321909
|
|
259
|
+
biotite/structure/sasa.cp312-win_amd64.pyd,sha256=zVhuwLShRhBLSWDx5enJHA683XpE-PcvCi2ap3KFJqE,190976
|
|
260
260
|
biotite/structure/sse.py,sha256=u0i-m0-FTlk0Oi74rj84g1dYNmgvVhW3uTuDHr9ubnI,12289
|
|
261
|
-
biotite/structure/superimpose.py,sha256=
|
|
261
|
+
biotite/structure/superimpose.py,sha256=DRGkXYeHOX1sM4S_xHBOY_mrLGoFy5hvOGeuCybFKVc,9352
|
|
262
262
|
biotite/structure/transform.py,sha256=DP_qp4uFgiNpL7OjojTl70rCXm1jHm8gs9ao51xnzU4,20270
|
|
263
263
|
biotite/structure/util.py,sha256=T1yhapfWJIMMsrkjOxBMu8aJTxNkJeZ7ttHo_XJBtTg,2356
|
|
264
264
|
biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
|
|
265
265
|
biotite/structure/graphics/atoms.py,sha256=kgLdRfwOxsZCJ4PQCxiJC6cV-wSJ6qUSwvW4soTOhEo,8396
|
|
266
266
|
biotite/structure/graphics/rna.py,sha256=-2mqW6n8tD3VEGiAhjXDMWNed0kLOO5-2EGdwwrmVKE,12169
|
|
267
|
-
biotite/structure/info/__init__.py,sha256=
|
|
268
|
-
biotite/structure/info/amino_acids.json,sha256=CsYGRuUSbVMhAnox2fm9IW_wpeAN2yhUzHy3qKk3Bxk,13988
|
|
269
|
-
biotite/structure/info/amino_acids.py,sha256=_JtRhCj5sEsCPeNDhTfBVZU2sifoGTxjY0ZV5C-MecA,1488
|
|
267
|
+
biotite/structure/info/__init__.py,sha256=zIRFQGmBG-XWfuID8Xr2vp6o70DdbdH1x8QXMn78MUY,727
|
|
270
268
|
biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
|
|
271
|
-
biotite/structure/info/atoms.py,sha256
|
|
272
|
-
biotite/structure/info/bonds.py,sha256=
|
|
273
|
-
biotite/structure/info/
|
|
274
|
-
biotite/structure/info/
|
|
275
|
-
biotite/structure/info/
|
|
276
|
-
biotite/structure/info/
|
|
277
|
-
biotite/structure/info/masses.py,sha256=IRjIZq5ZuKLVhYY03unnddBVJNx5-dV0jIoU_V9lFIM,4667
|
|
278
|
-
biotite/structure/info/misc.py,sha256=EL7O3X8oO2Feyf2KC2QAlygJ7CC00tJJJMputgmr2Is,2263
|
|
279
|
-
biotite/structure/info/nucleotides.json,sha256=tti1czJAZAAAeKISHWNKwhg42kAZhf9vzWjLdf8BpNg,6875
|
|
280
|
-
biotite/structure/info/nucleotides.py,sha256=m4Ak-CEvgQLot7A7TMDlw8phwnheHhvZUWmMuzw5CpU,1313
|
|
269
|
+
biotite/structure/info/atoms.py,sha256=x-0Axt6HplRznMKWCzRs4rUz8yKgG9nGay_ivREZHkg,2504
|
|
270
|
+
biotite/structure/info/bonds.py,sha256=lKivC_N6xd5t8LS_ngwScjegCX1bTPh8_2qcEe4Fd5o,4789
|
|
271
|
+
biotite/structure/info/ccd.py,sha256=FF0pWqKIto3PY7WPbLMHFFi7XgXCyi0GE7LVx-OZz1A,2848
|
|
272
|
+
biotite/structure/info/groups.py,sha256=yqKbbEJNRxaN41KVfUBvulPO2yu8nE35Qq08SUGvYko,2132
|
|
273
|
+
biotite/structure/info/masses.py,sha256=C_eb9HxNP43bVarwW4MgeUSUln-sYSdjyIK2qa8E3u4,4611
|
|
274
|
+
biotite/structure/info/misc.py,sha256=LEWdooTH8E6PDqFpgO8amwN2oPsYMad3Cx9QQKGJMl0,1920
|
|
281
275
|
biotite/structure/info/radii.py,sha256=bVCi_3TMz54uJTupgcxpPuqSYzLuT76da3V63v8dLRc,5844
|
|
282
|
-
biotite/structure/info/
|
|
283
|
-
biotite/structure/info/
|
|
284
|
-
biotite/structure/info/
|
|
285
|
-
biotite/structure/info/
|
|
286
|
-
biotite/structure/
|
|
287
|
-
biotite/structure/
|
|
288
|
-
biotite/structure/io/
|
|
276
|
+
biotite/structure/info/standardize.py,sha256=nghv0HozXDVx4lMCcCEUue460kM2EH5_KWgVEt0atBI,7967
|
|
277
|
+
biotite/structure/info/ccd/README.rst,sha256=GeRC_rNZkw9mmGBjSwiy6pgyzzYZEPh0IX5pMIjCruQ,349
|
|
278
|
+
biotite/structure/info/ccd/amino_acids.txt,sha256=1buxKHxk68vLmgEdO1V30MEdU93VPeprYSzZyzLJt5E,8237
|
|
279
|
+
biotite/structure/info/ccd/carbohydrates.txt,sha256=qokbd4VmUtdUroSI_DyMuNxTmWEZCCAYej9Rp9sS8vI,5665
|
|
280
|
+
biotite/structure/info/ccd/components.bcif,sha256=2exbF1n0jReJ3JTI9YYPzjxCtrIu3Z6myll-w3JOQRU,35086693
|
|
281
|
+
biotite/structure/info/ccd/nucleotides.txt,sha256=xFz44U327Uf4JVNJlQCOsADynnZhXreSiRJhqUtviys,3929
|
|
282
|
+
biotite/structure/io/__init__.py,sha256=CoLuj2rSeFcwWRkljmG0CLJmBpKAdTHukfch3E4Ws2c,1063
|
|
283
|
+
biotite/structure/io/ctab.py,sha256=4hrRuggQ0l_lmJBPb16PV5U1iO0wLeiFanLg-Ucvh0c,5101
|
|
284
|
+
biotite/structure/io/general.py,sha256=OAu_w-DbKtTePcbKXYtl-q6SlkT_s6XzERwoJp4jH70,9608
|
|
289
285
|
biotite/structure/io/trajfile.py,sha256=570HTBR-XEcWX5FpriC8ZzZR6JZCu8vRqm0nF6NZ1OQ,26403
|
|
290
286
|
biotite/structure/io/dcd/__init__.py,sha256=KeW_mvWoyTypFEdhaRTU75U8OLXzH7RqIgw_DLCbjMw,399
|
|
291
287
|
biotite/structure/io/dcd/file.py,sha256=G6uULpUtR8XtqrmWf348mU_svIqVn52LzaRFJks_qVM,2234
|
|
292
288
|
biotite/structure/io/gro/__init__.py,sha256=5UHVgXmEtWHzeQSNUMlHVjstIGN4CxGvIkzibqmM-oQ,420
|
|
293
289
|
biotite/structure/io/gro/file.py,sha256=Ge_IpcfHsX5KPp14MTRaOFfp5ma1QbP0TTl0y61bLU8,13290
|
|
294
|
-
biotite/structure/io/mmtf/__init__.py,sha256=
|
|
290
|
+
biotite/structure/io/mmtf/__init__.py,sha256=bRfwruWJD422YBveXTEtIpTaE1acKhXVjkLyNyd77f8,682
|
|
295
291
|
biotite/structure/io/mmtf/assembly.py,sha256=_BpiIKC2GcMKK8TnIsqau2x6h7L1NZm6O4IvIq0wqIs,8397
|
|
296
|
-
biotite/structure/io/mmtf/convertarray.c,sha256=
|
|
297
|
-
biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd,sha256=
|
|
298
|
-
biotite/structure/io/mmtf/convertfile.c,sha256=
|
|
299
|
-
biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd,sha256=
|
|
300
|
-
biotite/structure/io/mmtf/decode.c,sha256=
|
|
301
|
-
biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd,sha256=
|
|
302
|
-
biotite/structure/io/mmtf/encode.c,sha256=
|
|
303
|
-
biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd,sha256=
|
|
304
|
-
biotite/structure/io/mmtf/file.py,sha256=
|
|
292
|
+
biotite/structure/io/mmtf/convertarray.c,sha256=OOC8dnDPwJWo60-6ZCZEINlMaaM0ASB8sSny1bUF6J0,669330
|
|
293
|
+
biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd,sha256=vbei73Vvgg8xlvpEWtqVdJogUuoCR4_-H7QtFAujF1U,108032
|
|
294
|
+
biotite/structure/io/mmtf/convertfile.c,sha256=YysQ5YTG8yPQj_AC0H_Hn8vF30REP1e9-799oorpMgM,1548474
|
|
295
|
+
biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd,sha256=zWRBNb6p3603Oz8Emt4yAktf9FnU2pXmvz9jCYqj8zc,247808
|
|
296
|
+
biotite/structure/io/mmtf/decode.c,sha256=wS9Bg4dRlWIa4pQTFO0gdqYcY4uyYmmjqF8ipUqxHis,1379174
|
|
297
|
+
biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd,sha256=Jk_3RLzoH38VysHmuCF61cxPCXp7SXc5x0ccSvM9aB0,204800
|
|
298
|
+
biotite/structure/io/mmtf/encode.c,sha256=U04Z2Xayc1_ytyJHa_iOj3S-DvnaxhsaFOW1nqnAn8A,1326998
|
|
299
|
+
biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd,sha256=dqK6bqM5DVibuopP5vZOjq87_blpl3oNGpJnxXaebVA,188928
|
|
300
|
+
biotite/structure/io/mmtf/file.py,sha256=hma7f6zGB317-UEAnD7oYKCszMUInM6NyRzsYMvGuiI,7179
|
|
305
301
|
biotite/structure/io/mol/__init__.py,sha256=7m5o5KHBQUtCJ_9mvnnOMolrZIfuELC26kCpDGCV39U,558
|
|
306
302
|
biotite/structure/io/mol/convert.py,sha256=G9kP3oc-l-wEPa32xHNlkGqd_BLMMkhR2d6PEVbISgQ,1356
|
|
307
303
|
biotite/structure/io/mol/file.py,sha256=MeOpIx_FvbviHNtpaC2Wm6OVFZvjlgsM646fyn5HkVI,7594
|
|
308
304
|
biotite/structure/io/netcdf/__init__.py,sha256=NqC3zLxcG9RVgTx06j-YTH_exKCsNcUidhtfM76r9Ho,361
|
|
309
305
|
biotite/structure/io/netcdf/file.py,sha256=TrLCr6NK07eoCh39Z92KDBZVDEvyH04lBy9zQasNI8A,2218
|
|
310
|
-
biotite/structure/io/npz/__init__.py,sha256=
|
|
311
|
-
biotite/structure/io/npz/file.py,sha256=
|
|
312
|
-
biotite/structure/io/pdb/__init__.py,sha256=
|
|
306
|
+
biotite/structure/io/npz/__init__.py,sha256=WclJwCoaeptFUcLCwhxyNSkwyBnmQ0L2Ioy6iyQYAPU,755
|
|
307
|
+
biotite/structure/io/npz/file.py,sha256=ITh50YvN9ySt06fVjmzjimz7BGTlzw7ySeY8QLeQimE,5109
|
|
308
|
+
biotite/structure/io/pdb/__init__.py,sha256=OqfxRonPcLc4F109ZmAeIFE7R6v7OgeanhMAz6orsvc,751
|
|
313
309
|
biotite/structure/io/pdb/convert.py,sha256=C9o5UNr0UABYN32szyFBSHJK5wGCloK70aauMo5bCPA,10951
|
|
314
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
315
|
-
biotite/structure/io/pdb/hybrid36.c,sha256=
|
|
316
|
-
biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd,sha256=
|
|
310
|
+
biotite/structure/io/pdb/file.py,sha256=FFetp4Iy-CV_wvixp0BAhJx1Ew2370msEOPGgsPLN44,47202
|
|
311
|
+
biotite/structure/io/pdb/hybrid36.c,sha256=yw8r2oBNNEMROcjaxNltVl_ToNMAEHy9_Y4ksV0NtaY,1110900
|
|
312
|
+
biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd,sha256=xZjFhWlG5LLc1ib--_6uXrrIqU9nJmtJrKFEMupo4Hc,152576
|
|
317
313
|
biotite/structure/io/pdbqt/__init__.py,sha256=_e0Cyo-9kxX__O47RJwLJrylIWfAOiqqX-eVZ6w5RpQ,454
|
|
318
314
|
biotite/structure/io/pdbqt/convert.py,sha256=8DEo4oOhp5MXqXXr3EWHnKD4y4zI6kqZ-Fjv19g6IjI,4133
|
|
319
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
320
|
-
biotite/structure/io/pdbx/__init__.py,sha256
|
|
321
|
-
biotite/structure/io/pdbx/
|
|
322
|
-
biotite/structure/io/pdbx/
|
|
315
|
+
biotite/structure/io/pdbqt/file.py,sha256=okgs4zmpumCDkmrtQqbm6uCaM99J-cJlST1oNqGQqRY,27038
|
|
316
|
+
biotite/structure/io/pdbx/__init__.py,sha256=-eVtrykPw8Jup6mn3hQryWaQ8cN9tTasv7ptv3GDhBI,758
|
|
317
|
+
biotite/structure/io/pdbx/bcif.py,sha256=fOUQuPeEcYt2JmzVqYBtAgC_stQ1N2Yq3DNFjwLFmio,21065
|
|
318
|
+
biotite/structure/io/pdbx/cif.py,sha256=vV6Uau35WUNinU6sD29xwkkSi2yhSNUfZ9MHL0WXNKQ,33276
|
|
319
|
+
biotite/structure/io/pdbx/component.py,sha256=T0vAbDF_S6Zojipss7Kq8pTsVgJtRwGrOkXwxNEX4F8,8323
|
|
320
|
+
biotite/structure/io/pdbx/convert.py,sha256=i_zjTG3NMUW3ibnnab4uDxrjTgeuNLVTA7P6iQBi4TQ,56274
|
|
321
|
+
biotite/structure/io/pdbx/encoding.c,sha256=xRsJb1W7VJMms9QnwrfChpJjUnup7jaXTIf7TAjYbCg,4730722
|
|
322
|
+
biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd,sha256=0zTnj-9Fss7W5nIRe6LukGKbKIiE_B4qCjXAELDrp_s,946688
|
|
323
|
+
biotite/structure/io/pdbx/error.py,sha256=9j5OHx46cumrYrJZ6lkCgItRgF6emfF0eIg9DwvgSt4,393
|
|
324
|
+
biotite/structure/io/pdbx/legacy.py,sha256=Nix6sAg5S4-hRsbRXltx2CIQJKa7B7TPnPEgFLm8XaE,9108
|
|
323
325
|
biotite/structure/io/tng/__init__.py,sha256=3aQ_lcXAswoklT3IkbCK6yLKDMjBJwE7jU0ke0aNLmE,368
|
|
324
326
|
biotite/structure/io/tng/file.py,sha256=MW861kpo8fRqd3GFHFuV0LALkP6Q8nPhQkuj-uz1gU0,1348
|
|
325
327
|
biotite/structure/io/trr/__init__.py,sha256=ayqC8DyqjJ93VVytJEdmBHNcHTaIZOCfktzpBdxFFwU,370
|
|
326
328
|
biotite/structure/io/trr/file.py,sha256=4rS9HNoXQXCauquOTbkUWeveq9LEy0CKBNgi_IMTL-s,1348
|
|
327
329
|
biotite/structure/io/xtc/__init__.py,sha256=NHHFO6mTJCj3pfbP4saehOcKXrYr9CxVMSuJVb9QJHE,368
|
|
328
330
|
biotite/structure/io/xtc/file.py,sha256=UQ-QF5leM2ujMPde8RFe3dNShHXjl8lJ0qWU77QkbCY,1344
|
|
329
|
-
biotite-0.
|
|
330
|
-
biotite-0.
|
|
331
|
-
biotite-0.
|
|
332
|
-
biotite-0.
|
|
333
|
-
biotite-0.
|
|
331
|
+
biotite-0.40.0.dist-info/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
|
|
332
|
+
biotite-0.40.0.dist-info/METADATA,sha256=bZaApTixEG5jblqNDNHutNAeuPPNvwy8EnEAY7VXb6U,7339
|
|
333
|
+
biotite-0.40.0.dist-info/WHEEL,sha256=fZWyj_84lK0cA-ZNCsdwhbJl0OTrpWkxInEn424qrSs,102
|
|
334
|
+
biotite-0.40.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
|
|
335
|
+
biotite-0.40.0.dist-info/RECORD,,
|