biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.40.0__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- 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.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cp310-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 +219 -198
- biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cp310-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.cp310-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 +112813 -0
- biotite/structure/io/pdbx/encoding.cp310-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 +215 -196
- biotite/structure/sasa.cp310-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.cp310-win_amd64.pyd,sha256=
|
|
58
|
+
biotite/sequence/codec.c,sha256=TX2bbUqLt28sgh1oQquA0acXGgeFkz4f-VQvWKD1S2I,1529118
|
|
59
|
+
biotite/sequence/codec.cp310-win_amd64.pyd,sha256=h7oARp3vwwrixgUI8aa0RVVMMtLTn5J81j6AtSwouzA,240640
|
|
60
60
|
biotite/sequence/codon.py,sha256=g3CfUkCbzm0kwDf0jsQdOk0RBKU9B4HvJEq5bCqTvRc,16921
|
|
61
61
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
62
62
|
biotite/sequence/profile.py,sha256=a455N4r1ua9e5tDZIp8u014ELxZE-Sxw_IUeCuqjgrQ,17269
|
|
@@ -65,33 +65,33 @@ biotite/sequence/seqtypes.py,sha256=NjBXwpTer2PhcEwngpWBYwYwR6yj3N_7JTILIoG3UNM,
|
|
|
65
65
|
biotite/sequence/sequence.py,sha256=aRA8oHwWt8xyC8mHD0vPNpbYJiihyanD1hkUl9-qrfo,12285
|
|
66
66
|
biotite/sequence/align/__init__.py,sha256=0nXg-din6JaXqPAZsv9yf0F7YICjNsXTc4erZotaF10,1752
|
|
67
67
|
biotite/sequence/align/alignment.py,sha256=IiD_v_N10M3xRn2Xn5BdPT3E7dRIS7Qsne0WQUWWRks,21995
|
|
68
|
-
biotite/sequence/align/banded.c,sha256=
|
|
69
|
-
biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=
|
|
68
|
+
biotite/sequence/align/banded.c,sha256=ffyObiHOIyLgDs14EcMGiyBW8wAdkOu45-WWAHqGHms,2578665
|
|
69
|
+
biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=Abe1tcBXdCq-Nph7mKqyeUZXnGlS9qjA9ABp_hJg_4I,489472
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
74
|
-
biotite/sequence/align/kmersimilarity.c,sha256=
|
|
75
|
-
biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=
|
|
76
|
-
biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=
|
|
77
|
-
biotite/sequence/align/kmertable.cpp,sha256=
|
|
78
|
-
biotite/sequence/align/localgapped.c,sha256=
|
|
79
|
-
biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=
|
|
80
|
-
biotite/sequence/align/localungapped.c,sha256=
|
|
81
|
-
biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=
|
|
72
|
+
biotite/sequence/align/kmeralphabet.c,sha256=F7ZQtWEjwBkzZ99bveM3066zHpYXberihRrzJnCvD3Y,1912880
|
|
73
|
+
biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd,sha256=iZNk-EhkMhhaSHhnhS3KDeJEBum64qdLz4dR_S4FbBI,307712
|
|
74
|
+
biotite/sequence/align/kmersimilarity.c,sha256=kaGmq6Ld6EEfXaiDoTfVwGlu1un0yyKopO8yPibht3E,1252717
|
|
75
|
+
biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=bJirV4rjiYDx_NHUCzkIZgzWdcR48f9hnaxfdhI9Efg,172032
|
|
76
|
+
biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=X2qzSiBZuIJoMi8xurK_t00Vxw3AeCoEkO5ltUPga2c,597504
|
|
77
|
+
biotite/sequence/align/kmertable.cpp,sha256=WnI_WouD5DBJLnW7sTRe-8Xjn-kreHwezTTTKeDlc14,3030299
|
|
78
|
+
biotite/sequence/align/localgapped.c,sha256=7QozhJ-n9UN1MBdg5TFYKSnjIYAgPCijPJVvbGKNnrY,4599727
|
|
79
|
+
biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=bjTkW3CJYuSH6aDm6lFQLXXFiK7yRL23KO6YGDDEA2w,987648
|
|
80
|
+
biotite/sequence/align/localungapped.c,sha256=cX8gvph5tLdgeSGphNAnCotFS7GenEPbd5oci30kY5U,1605971
|
|
81
|
+
biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=MbhqERI5kLnDML5wqbKv2C92l-kpMp07aZyMnXE9ZDA,253952
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
85
|
-
biotite/sequence/align/pairwise.c,sha256=
|
|
86
|
-
biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=
|
|
87
|
-
biotite/sequence/align/permutation.c,sha256=
|
|
88
|
-
biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=
|
|
83
|
+
biotite/sequence/align/multiple.c,sha256=HD1i2LD91HYXZGNY6Z5bGqoxikDfaFp8nOfSYDoBXTc,2275188
|
|
84
|
+
biotite/sequence/align/multiple.cp310-win_amd64.pyd,sha256=ai52uJsy2GNiip1cti033mP539_5Gca833kdwpz4OMQ,404480
|
|
85
|
+
biotite/sequence/align/pairwise.c,sha256=hYgeF4T5xxjWKATlijBE2i3kfznLiehmqf8ALlEoqC0,2882781
|
|
86
|
+
biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=Fq0_UlOvDRchC2W7kJuj42lI_nm2Anu0rTD8qGIu1DY,533504
|
|
87
|
+
biotite/sequence/align/permutation.c,sha256=5fFTfT8WxwPgvCYcAg50QnQNe1g0Lcs58hgvZGR4PC4,1278890
|
|
88
|
+
biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=D-c0R2wURZZXP7xMVMVryzZ6_uk2X1Zh4BYU0BnB-fs,180224
|
|
89
89
|
biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
|
|
90
|
-
biotite/sequence/align/selector.c,sha256=
|
|
91
|
-
biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=
|
|
90
|
+
biotite/sequence/align/selector.c,sha256=7LtjdMFy7kNF_mo6VcmuvO8_A56yJc1Nn-pED99bk8E,1632745
|
|
91
|
+
biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=W5d5qji_h_CARGDxtLyziwKL85MZS4y6cfjvFhqZR3w,253440
|
|
92
92
|
biotite/sequence/align/statistics.py,sha256=m8O15sp8ENnyM_PcJEmiTy0lJ9O9h9-Cw3FEIzQXpVY,9996
|
|
93
|
-
biotite/sequence/align/tracetable.c,sha256=
|
|
94
|
-
biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=
|
|
93
|
+
biotite/sequence/align/tracetable.c,sha256=CeMU6xA65JBk-5otFkYa9TRZqq8ohU-S4WLXdBUQwDI,1219044
|
|
94
|
+
biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=yVETDnXSuGAXieXdquhKcxL9PMU14Kra7gB8NE2FENY,145408
|
|
95
95
|
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
|
|
96
96
|
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
|
|
97
97
|
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
|
|
@@ -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.cp310-win_amd64.pyd,sha256=
|
|
229
|
-
biotite/sequence/phylo/tree.c,sha256=
|
|
230
|
-
biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=
|
|
231
|
-
biotite/sequence/phylo/upgma.c,sha256=
|
|
232
|
-
biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=
|
|
227
|
+
biotite/sequence/phylo/nj.c,sha256=DqQoSstmrSxayCBvYI6nexj4XSINhxREjwzoj-FUcqc,1221174
|
|
228
|
+
biotite/sequence/phylo/nj.cp310-win_amd64.pyd,sha256=xl6JlmH5t656bLqukcNFeGHJ8rVPrHl3ro9wgxHJWcc,167936
|
|
229
|
+
biotite/sequence/phylo/tree.c,sha256=JFndLjvmNeu4P8wuhfe68luissIAvY3xJVYWy3NP91k,1216278
|
|
230
|
+
biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=U4B1Sb2nKi0mOUYzBGpTqYvA0iOGHAlBPDde6yyDSKQ,208384
|
|
231
|
+
biotite/sequence/phylo/upgma.c,sha256=Ach-AS5uitfgu8MqHJr4N8yg1fhZxqbrFwAfliduqUc,1168702
|
|
232
|
+
biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=n4uSvPQRJM0bgWxOwmZRaziOG9jdQL5hXQWLxt1ygOc,160256
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
235
|
+
biotite/structure/basepairs.py,sha256=s6h7uSKmuiT6yRyVB1bBuH_xjoRnOSHaRuTgdC0BUbA,51563
|
|
236
|
+
biotite/structure/bonds.c,sha256=39PGcz9IgQqSIhlE0ZhxHyGBe7cXilC3-OUykY7XnlI,2536277
|
|
237
|
+
biotite/structure/bonds.cp310-win_amd64.pyd,sha256=zp433DqL_s0EfUWYMB2JEg7Ta438NoB1YabShJ-WAVQ,469504
|
|
238
238
|
biotite/structure/box.py,sha256=5mt25oCUd_GG4j_TBRaT6w__IQGjg-sFYiw4h-Iw7nA,19333
|
|
239
|
-
biotite/structure/celllist.c,sha256=
|
|
240
|
-
biotite/structure/celllist.cp310-win_amd64.pyd,sha256=
|
|
239
|
+
biotite/structure/celllist.c,sha256=xbY1Z8WPy2TyK3qvxTUYrzSG3p2-JPdmwVSEOEOErmA,1569623
|
|
240
|
+
biotite/structure/celllist.cp310-win_amd64.pyd,sha256=h8ij8PP7WGM8z8w0kHNSDJ00z9K4MLXR5H8F4-utZRE,250368
|
|
241
241
|
biotite/structure/chains.py,sha256=fiAmT6J8BlfmdAtajOd_QVU0qriCwE7QPe4KsVxbXo8,9104
|
|
242
|
-
biotite/structure/charges.c,sha256=
|
|
243
|
-
biotite/structure/charges.cp310-win_amd64.pyd,sha256=
|
|
242
|
+
biotite/structure/charges.c,sha256=OlekoArZNext85k6wjIPiBzLND9VaODk6jd9sIXnMgE,1410335
|
|
243
|
+
biotite/structure/charges.cp310-win_amd64.pyd,sha256=_v4uRtpwDezKtTi1Q5DSVwuuGeBWNoGdkT1EwC84Hj8,212992
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
258
|
+
biotite/structure/sasa.c,sha256=vEJU8vLQHCF0SH3aIAw-bOcq3Vvxh6cvXIjR14Yzgns,1322355
|
|
259
|
+
biotite/structure/sasa.cp310-win_amd64.pyd,sha256=Hp9eYndLZ9O7-miwQ2fCUY9J_OlqPEl5537jnvvkjgA,187392
|
|
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.cp310-win_amd64.pyd,sha256=
|
|
298
|
-
biotite/structure/io/mmtf/convertfile.c,sha256=
|
|
299
|
-
biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd,sha256=
|
|
300
|
-
biotite/structure/io/mmtf/decode.c,sha256=
|
|
301
|
-
biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd,sha256=
|
|
302
|
-
biotite/structure/io/mmtf/encode.c,sha256=
|
|
303
|
-
biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd,sha256=
|
|
304
|
-
biotite/structure/io/mmtf/file.py,sha256=
|
|
292
|
+
biotite/structure/io/mmtf/convertarray.c,sha256=IkCd58d564g09KptlaSro-Z0YGQWYVORUPlhfbXhTU4,669776
|
|
293
|
+
biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd,sha256=XXKkSrPfs2bv1AnSq_ocAhZA4evvFke6xVRmrUoQwyU,104960
|
|
294
|
+
biotite/structure/io/mmtf/convertfile.c,sha256=AKJ6OW0xPI5i_27vZyuCBbcDt3YN4z0GP9qGZ9s7uOA,1548920
|
|
295
|
+
biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd,sha256=0nV1T-bYA8UkzyeS4j9oovGb2SNKF6E0CAo7olrM7vA,240640
|
|
296
|
+
biotite/structure/io/mmtf/decode.c,sha256=d4I-nnMGR43q0nqewHNOw85PJ1c590PpYrszPzd8FzA,1379620
|
|
297
|
+
biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd,sha256=ifTVGtTMJXW4CdYlDwy_3ONFuu9JSHn6sBhe_7Zuim8,202752
|
|
298
|
+
biotite/structure/io/mmtf/encode.c,sha256=HinB8Y9NQKDsOu36NtiII9qrgpvYdryyIRsfRXN9Vrw,1327444
|
|
299
|
+
biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd,sha256=q6gqhJbZtgAy2FAR8pKoXdOtAdXAjosQJ0nh2Q5G874,185856
|
|
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.cp310-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.cp310-win_amd64.pyd,sha256=okbNzMsJpukHLKUfmPLs3DlGxlCxz5GYAWlbtoW-0Uk,147456
|
|
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=UaSWs7Fr4V6aYvlAgeencRg1N4i0F6LuqYaaGWPsn6Q,4731168
|
|
322
|
+
biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd,sha256=_N1Zt5ZqO9HiXZlJo5lW94IbBXgZ3HZfAXpMCmIkQoQ,976384
|
|
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=lO6CqtLHCAi38X3Es1a4R1lAjZFvN010IMRCFo2S7Mc,102
|
|
334
|
+
biotite-0.40.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
|
|
335
|
+
biotite-0.40.0.dist-info/RECORD,,
|