biotite 1.0.1__cp310-cp310-win_amd64.whl → 1.1.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/application/dssp/app.py +13 -3
- biotite/application/localapp.py +34 -0
- biotite/application/muscle/app3.py +2 -15
- biotite/application/muscle/app5.py +2 -2
- biotite/application/util.py +1 -1
- biotite/application/viennarna/rnaplot.py +6 -2
- biotite/database/rcsb/query.py +6 -6
- biotite/database/uniprot/check.py +20 -15
- biotite/database/uniprot/download.py +1 -1
- biotite/database/uniprot/query.py +1 -1
- biotite/sequence/align/alignment.py +16 -3
- biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/banded.pyx +5 -5
- biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.pyx +17 -0
- biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.pyx +52 -42
- biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/matrix.py +273 -55
- biotite/sequence/align/matrix_data/3Di.mat +24 -0
- biotite/sequence/align/matrix_data/PB.license +21 -0
- biotite/sequence/align/matrix_data/PB.mat +18 -0
- biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/alphabet.py +3 -0
- biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
- biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
- biotite/sequence/graphics/color_schemes/pb_flower.json +2 -1
- biotite/sequence/graphics/colorschemes.py +44 -11
- biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
- biotite/sequence/profile.py +86 -4
- biotite/sequence/seqtypes.py +124 -3
- biotite/setup_ccd.py +197 -0
- biotite/structure/__init__.py +4 -3
- biotite/structure/alphabet/__init__.py +25 -0
- biotite/structure/alphabet/encoder.py +332 -0
- biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
- biotite/structure/alphabet/i3d.py +110 -0
- biotite/structure/alphabet/layers.py +86 -0
- biotite/structure/alphabet/pb.license +21 -0
- biotite/structure/alphabet/pb.py +171 -0
- biotite/structure/alphabet/unkerasify.py +122 -0
- biotite/structure/atoms.py +129 -40
- biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
- biotite/structure/bonds.pyx +72 -21
- biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
- biotite/structure/charges.cp310-win_amd64.pyd +0 -0
- biotite/structure/geometry.py +60 -113
- biotite/structure/info/__init__.py +1 -0
- biotite/structure/info/atoms.py +13 -13
- biotite/structure/info/bonds.py +12 -6
- biotite/structure/info/ccd.py +125 -32
- biotite/structure/info/{ccd/components.bcif → components.bcif} +0 -0
- biotite/structure/info/groups.py +63 -17
- biotite/structure/info/masses.py +9 -6
- biotite/structure/info/misc.py +15 -21
- biotite/structure/info/standardize.py +3 -2
- biotite/structure/io/mol/sdf.py +41 -40
- biotite/structure/io/pdb/convert.py +2 -0
- biotite/structure/io/pdb/file.py +74 -3
- 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 +1 -0
- biotite/structure/io/pdbx/bcif.py +32 -8
- biotite/structure/io/pdbx/cif.py +72 -59
- biotite/structure/io/pdbx/component.py +9 -4
- biotite/structure/io/pdbx/compress.py +321 -0
- biotite/structure/io/pdbx/convert.py +194 -48
- biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/encoding.pyx +98 -17
- biotite/structure/molecules.py +141 -141
- biotite/structure/sasa.cp310-win_amd64.pyd +0 -0
- biotite/structure/segments.py +1 -2
- biotite/structure/util.py +73 -1
- biotite/version.py +2 -2
- {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/METADATA +3 -1
- {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/RECORD +86 -76
- biotite/structure/info/ccd/README.rst +0 -8
- biotite/structure/info/ccd/amino_acids.txt +0 -1663
- biotite/structure/info/ccd/carbohydrates.txt +0 -1135
- biotite/structure/info/ccd/nucleotides.txt +0 -798
- {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/WHEEL +0 -0
- {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/licenses/LICENSE.rst +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
biotite/__init__.py,sha256=gzqOy5P7Zf667uYuUwqjLLW0GiBdqc23NLcZaXMuHKw,563
|
|
2
2
|
biotite/copyable.py,sha256=Qnja44k58dAc3WkIUM0svqrbvqO9pSV-Atr9MUJSoCI,1968
|
|
3
3
|
biotite/file.py,sha256=oZdBRv34nrGFJ7ZIrSW9uf4NSk9H3Mg0WxgbQqxibbU,6756
|
|
4
|
-
biotite/
|
|
4
|
+
biotite/setup_ccd.py,sha256=9StRz4qPVdTJNrPUoA_liwvkKnTb8O0U8PDxt1tDVwc,6248
|
|
5
|
+
biotite/version.py,sha256=mLrG-mC5i2vs5IEM3ZgT5S9ZdaqM1wQHESPk1-Rj79o,427
|
|
5
6
|
biotite/visualize.py,sha256=d926kscZJdQKYM9v7CUaAeMial11N8l_NyC7_fVv7wQ,10277
|
|
6
7
|
biotite/application/__init__.py,sha256=Rei3EwlpCnC_cJNQoTJYY_Gw_qLdsqgnRxV5b1slHJU,3148
|
|
7
8
|
biotite/application/application.py,sha256=WKGVuCJ5WTwuoOmSWAklZwAGbEgJaTdf3fFmb4f1Iv8,8374
|
|
8
|
-
biotite/application/localapp.py,sha256=
|
|
9
|
+
biotite/application/localapp.py,sha256=3WgiDMNXL1T7K5_g1URkLS-OqfBVQE48E7FcwoglfUY,10612
|
|
9
10
|
biotite/application/msaapp.py,sha256=NZJVMWyx7TgiDI5NP7FMZx1ZOUfYJU8wKxBqcle-Pmg,12339
|
|
10
|
-
biotite/application/util.py,sha256=
|
|
11
|
+
biotite/application/util.py,sha256=GgOezqMoxjXeWLwce1HL3gWByZAWmoRhWc3JRjqo2q8,2168
|
|
11
12
|
biotite/application/webapp.py,sha256=zkkMc9zyaDancX24TwUkBSKA2NQR70QQLALVZ9XZKHc,2237
|
|
12
13
|
biotite/application/autodock/__init__.py,sha256=QtcZDgjFXYaHYSoVtnx8Bs2YA9TvwCg0fSkMfrxKK3k,327
|
|
13
14
|
biotite/application/autodock/app.py,sha256=zfqKFYT6K8zKrHN1uotIX-gBAKdj_kzB7klRThxClO8,19186
|
|
@@ -17,12 +18,12 @@ biotite/application/blast/webapp.py,sha256=byuSfcaKHKokxUwf2fjT3-DTtqsiSD0gB3lys
|
|
|
17
18
|
biotite/application/clustalo/__init__.py,sha256=UtEQiS9nDZF9-Sup3kbi06mTjv6YRD9Qbu5A722bNlY,338
|
|
18
19
|
biotite/application/clustalo/app.py,sha256=TMZEHqZc_czqAFtsEg9cYIPTCCLltbgbEqC6zhas2WM,7640
|
|
19
20
|
biotite/application/dssp/__init__.py,sha256=smuKF9_8g5xzY-MFjYXTYa3wbTfQD4g6L3TDCfMTr8w,335
|
|
20
|
-
biotite/application/dssp/app.py,sha256=
|
|
21
|
+
biotite/application/dssp/app.py,sha256=ZBgW5R5Y1nt1D69imUpc_79-XPm9N3yqfdZKxgVc8-M,5482
|
|
21
22
|
biotite/application/mafft/__init__.py,sha256=urPUmmuKAsB9DQeEeaj8EDt3uL0UjgBSo76H2HnLsLs,327
|
|
22
23
|
biotite/application/mafft/app.py,sha256=W_iWXuaO0CaCFpnTyawlmQ1P0wt9pnGnwr-AzAudLM0,3397
|
|
23
24
|
biotite/application/muscle/__init__.py,sha256=26qqctlXpZqoFBD1K_y_Zv7QZfDdMHOodGAXW20r42Q,351
|
|
24
|
-
biotite/application/muscle/app3.py,sha256=
|
|
25
|
-
biotite/application/muscle/app5.py,sha256=
|
|
25
|
+
biotite/application/muscle/app3.py,sha256=OmugKWOwQhI6a7Rg0rOFD4_AHlLJjxG6KfoI_ANzprA,7840
|
|
26
|
+
biotite/application/muscle/app5.py,sha256=KPwqhPjSUPRH0y0wd2Qg9dCEt8KY_lZiJ5MHK2nJYNc,4598
|
|
26
27
|
biotite/application/sra/__init__.py,sha256=GwfAKbOfTTYaLVdTwdkJxCMCY-SUd7WsN7BDAU2Xq7A,571
|
|
27
28
|
biotite/application/sra/app.py,sha256=PIiBIy5wZfzcyDEh2N3oD9I_HwnCDWE4KJ7fy0VB_AY,16316
|
|
28
29
|
biotite/application/tantan/__init__.py,sha256=XivhGt3vpQ7EvRKdxT_jQNXIPnvVxAUXCnHYZkSuiHY,340
|
|
@@ -30,7 +31,7 @@ biotite/application/tantan/app.py,sha256=nWE3rlDqf3-jfpIXUw1ddH4ooiD2lZ1GeqBvGXE
|
|
|
30
31
|
biotite/application/viennarna/__init__.py,sha256=HlvHvgsTdzTbq3e9luAmMP-4DbkiBqx5ru69swdz4ns,491
|
|
31
32
|
biotite/application/viennarna/rnaalifold.py,sha256=sLFebN8_ThaC0r4tBPAsYWHrbSYAhwdr3D6QxSj3dlI,10918
|
|
32
33
|
biotite/application/viennarna/rnafold.py,sha256=skqZzqE-otS6uL38isGpikLUbwf8srsOQirINB6qi-8,8164
|
|
33
|
-
biotite/application/viennarna/rnaplot.py,sha256=
|
|
34
|
+
biotite/application/viennarna/rnaplot.py,sha256=WOBsfgYZ0pXmpbCc4NFHfdFITfsLhgBKDvZtWSxTqiI,6622
|
|
34
35
|
biotite/application/viennarna/util.py,sha256=rJizJjwn7yw2lfnz93sHNVle04WwpdfskhBkT6gWbsE,2711
|
|
35
36
|
biotite/database/__init__.py,sha256=N3PuLKuEbQ0J55CddwryBGiLfYSazC697F8KnxizrKY,748
|
|
36
37
|
biotite/database/error.py,sha256=L_FvDa-F4XUaCIVo6ZtLXIMn6P-cv783lvxR_Rtluqw,426
|
|
@@ -47,32 +48,32 @@ biotite/database/pubchem/query.py,sha256=dPONXpyWc3158KP_7DRxZ2JMEI5qjyoe3atIkcF
|
|
|
47
48
|
biotite/database/pubchem/throttle.py,sha256=V4RzypMfh1IaBC8yZrH1l8W1k7v2KLpj1_fK94k-__w,3384
|
|
48
49
|
biotite/database/rcsb/__init__.py,sha256=BKYOAhSIX1zb00wp_6bw30M7XGliu64B35Dm2Gf-A14,345
|
|
49
50
|
biotite/database/rcsb/download.py,sha256=Orst9nfBrcDJhUyfj3aS8Tf11N9tdNSpwAoLUfWXgnE,5781
|
|
50
|
-
biotite/database/rcsb/query.py,sha256=
|
|
51
|
+
biotite/database/rcsb/query.py,sha256=pSNcDTEBiTAWMDRLV3SKMfNL4s_q4nM4w8gOcpWTRk4,33883
|
|
51
52
|
biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
|
|
52
|
-
biotite/database/uniprot/check.py,sha256=
|
|
53
|
-
biotite/database/uniprot/download.py,sha256=
|
|
54
|
-
biotite/database/uniprot/query.py,sha256=
|
|
53
|
+
biotite/database/uniprot/check.py,sha256=mcG3V3iVEubQAlGyBKGM1QQ9nhmjLIlVMWPDUa_oYNo,1413
|
|
54
|
+
biotite/database/uniprot/download.py,sha256=7lVV4bZmhw_m7vXdYgYSmNrSkftPzW0a7RXtPLrEy8I,4437
|
|
55
|
+
biotite/database/uniprot/query.py,sha256=jNEsV-EoNQUB7JZC7byMoLuHY_WsVyiosJC55XHPo-A,7844
|
|
55
56
|
biotite/sequence/__init__.py,sha256=fUoOYLTavBTicHu-JCQkvrCAyRfKRspfCItufOBDGGE,3507
|
|
56
|
-
biotite/sequence/alphabet.py,sha256=
|
|
57
|
+
biotite/sequence/alphabet.py,sha256=CzgnebrYH_zCnBD7arCAUX_46ZzYHMWFKKDoaKVY_cY,17800
|
|
57
58
|
biotite/sequence/annotation.py,sha256=Z-Q03m4EE32wAeaG7ov0BuoG4mH7Vr3EM59v_5qgwJ8,30343
|
|
58
59
|
biotite/sequence/codec.pyx,sha256=JIKPODmlk7RGW1GIhoUSrbfS1XRJa6vbOb5ur-62jIc,5116
|
|
59
60
|
biotite/sequence/codon.py,sha256=zPe7lKcdxM8IvBwF42IBWeaVufMFXbuwViaMBGHgWqs,16869
|
|
60
61
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
61
|
-
biotite/sequence/profile.py,sha256=
|
|
62
|
+
biotite/sequence/profile.py,sha256=62fXOvouRGuPZ1TD-Y73DI0ui7ZOzSwX1hDCCGtJmrg,19942
|
|
62
63
|
biotite/sequence/search.py,sha256=J6ogMj58ft6bLGUw6IMckwG4nJonIojiICyAvv7mn7w,3207
|
|
63
|
-
biotite/sequence/seqtypes.py,sha256=
|
|
64
|
+
biotite/sequence/seqtypes.py,sha256=FENMFahEBe86svQa7csx1HZHAHp7DIJ39D_xBSUbVXM,23806
|
|
64
65
|
biotite/sequence/sequence.py,sha256=lRfkfK5r5awT8a4jqEZSn-z3Q1XjcS3BsqxTLBTKWXw,12067
|
|
65
66
|
biotite/sequence/align/__init__.py,sha256=wZEaGdpVi5ei6giroWWphOtfHn_jqBZPNpyAYqqg2gc,4918
|
|
66
|
-
biotite/sequence/align/alignment.py,sha256=
|
|
67
|
-
biotite/sequence/align/banded.pyx,sha256=
|
|
67
|
+
biotite/sequence/align/alignment.py,sha256=wdqW29Fi_F0se9DJn3_nQmiyAkVgvLYhT-n2Ta2SF9A,22373
|
|
68
|
+
biotite/sequence/align/banded.pyx,sha256=BB41oDfUs4yE7U3Q5CfE66B7BmFTMwOcFnmEJ9xLukA,26044
|
|
68
69
|
biotite/sequence/align/buckets.py,sha256=3QLzBDorc0ZYJv2SNuRn-mWmT3I2XljfCD1AoNV3ldw,2535
|
|
69
70
|
biotite/sequence/align/cigar.py,sha256=DWkAlFL05b3Px0Bek9KNnU6UhvjkXxw7rCRsilREAKU,14710
|
|
70
|
-
biotite/sequence/align/kmeralphabet.pyx,sha256=
|
|
71
|
+
biotite/sequence/align/kmeralphabet.pyx,sha256=RSONYcLGOMGbW0qW2dXRlXhGxFVpVie3DDTwRTvU3tI,19231
|
|
71
72
|
biotite/sequence/align/kmersimilarity.pyx,sha256=tmAKKZY2JOvnPjU0PQqInvb_MRo7whUxgX0iVZNWIbg,8665
|
|
72
|
-
biotite/sequence/align/kmertable.pyx,sha256=
|
|
73
|
+
biotite/sequence/align/kmertable.pyx,sha256=NmQeOlRTfr7B8hqX7N5lg8VsLLVOsG9MSRjVWsgUhPo,125108
|
|
73
74
|
biotite/sequence/align/localgapped.pyx,sha256=523kib6BGDASd4AYZw4j0AMx7c_TfKr_gO-LTPL2Puo,34277
|
|
74
75
|
biotite/sequence/align/localungapped.pyx,sha256=Uid8_OGa2yLrLeoblEF6VqUanqtvcAMgJHKWBfz9Ppw,9974
|
|
75
|
-
biotite/sequence/align/matrix.py,sha256=
|
|
76
|
+
biotite/sequence/align/matrix.py,sha256=b4dCr6FQGIfwnSBKQ5tbHvxHS55JTTalH1KGQWD9vhI,22725
|
|
76
77
|
biotite/sequence/align/multiple.pyx,sha256=J9MLWqzSvJN-1eWsjCPGlCdr51cSYkkiwyjyyE46qFo,22585
|
|
77
78
|
biotite/sequence/align/pairwise.pyx,sha256=P8aiNasedIZPuTrNfUSkQK_6fK5msdCmvcXAVHnPgP0,23422
|
|
78
79
|
biotite/sequence/align/permutation.pyx,sha256=G9quD4yyP_5BCgVkJE_Xf_9wovn1Bg_MXPtltopaUYw,10340
|
|
@@ -81,6 +82,7 @@ biotite/sequence/align/selector.pyx,sha256=xVc2DyA4KHTunzulYaiS225Ghaw3Hm5_44hdS
|
|
|
81
82
|
biotite/sequence/align/statistics.py,sha256=aAB_RRl7wjUhqlHtRyfrw1XQ91WsZ45fHePnmsL17rQ,9919
|
|
82
83
|
biotite/sequence/align/tracetable.pxd,sha256=JhxS9sl5wV6HD_cJMXaBt1zm_4_y5twsBs5buMVDYI0,2888
|
|
83
84
|
biotite/sequence/align/tracetable.pyx,sha256=ReX5kId42RQqlMZmNRpzMmF3_9Z4laL8dXK88IiW-6c,15824
|
|
85
|
+
biotite/sequence/align/matrix_data/3Di.mat,sha256=-vJKsfx0GvUTWQLn6E4iQqAb17886onYD5277vE0DSc,2044
|
|
84
86
|
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
|
|
85
87
|
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
|
|
86
88
|
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
|
|
@@ -164,6 +166,8 @@ biotite/sequence/align/matrix_data/PAM60.mat,sha256=tEP5rtSKfgJt14UAQd1dhHO4BDBz
|
|
|
164
166
|
biotite/sequence/align/matrix_data/PAM70.mat,sha256=hYpO31Doaim0281R8CSaLuN3ufFslxH4sho8ErMpqx4,2700
|
|
165
167
|
biotite/sequence/align/matrix_data/PAM80.mat,sha256=Q6B4P1vT9zLD4zXWpuBUrRfPgmjTLTOcF_yMnKeDgWI,2700
|
|
166
168
|
biotite/sequence/align/matrix_data/PAM90.mat,sha256=kB9YeLnQcIJwSRrIm3Ds961BH44ZTPVFjPZ2ZoJjhXQ,2700
|
|
169
|
+
biotite/sequence/align/matrix_data/PB.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
|
|
170
|
+
biotite/sequence/align/matrix_data/PB.mat,sha256=uzRYqr9cWWM9aJYyT7n2ZDWRcWLCXTJSj4UvDviB0zI,1711
|
|
167
171
|
biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat,sha256=x9VzlyYY5EZ8xei0rnQ2ytuG6EGS-hUTxk7h1MSAyII,1875
|
|
168
172
|
biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat,sha256=t2RTYBWH7pD2mr8OGH7KGu8DIs14TI3SDh_OF75YQyM,1875
|
|
169
173
|
biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat,sha256=ppkCtdb5MiZFF4JNokg3X1gf1mDN4qGV0C_dCHcbsbs,1875
|
|
@@ -172,11 +176,12 @@ biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=xABdTJkFD8zQKcmyvnt6
|
|
|
172
176
|
biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=FzdtLvS9xnAvNH_xCZ9P1ydCHCMaFeYC6VkqA844x5Y,1875
|
|
173
177
|
biotite/sequence/graphics/__init__.py,sha256=nQMB_4upyPX-9_f6rThY9-KSRkGtBi_WRxMc92v2A6I,1185
|
|
174
178
|
biotite/sequence/graphics/alignment.py,sha256=pgmbX8R2rHby3ZTq6ER7UZwGjrIPdEhVxSDKHn_TmoY,40645
|
|
175
|
-
biotite/sequence/graphics/colorschemes.py,sha256=
|
|
179
|
+
biotite/sequence/graphics/colorschemes.py,sha256=ISSJvX0c840TJEhnjH-Y57jo8LhHCuaU3DTFNu3nxWI,5687
|
|
176
180
|
biotite/sequence/graphics/dendrogram.py,sha256=txLxITGdxY_iUXwtcxqxMqK00GUR0MPIayVxdTqz2uM,7821
|
|
177
181
|
biotite/sequence/graphics/features.py,sha256=L1RksYnwHy0bHYWNUyeso4krWLrYrxekj9zxp9bYpuQ,17839
|
|
178
182
|
biotite/sequence/graphics/logo.py,sha256=EYaz9h9rSCUn2LLLKBsLon7BA2s1vRfsGdPOQLFoGto,3923
|
|
179
183
|
biotite/sequence/graphics/plasmid.py,sha256=9SZItKWdLSCdTbolBsWDPyVDb-75aYGtTsPKH_9ywio,26714
|
|
184
|
+
biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=O5CIZo3B4kA6ItoEAFCcCwvkFlz5-9GH4fRH-Hh6Ugc,964
|
|
180
185
|
biotite/sequence/graphics/color_schemes/autumn.json,sha256=ykykAiaOGDBaBLXwtjqVBRYmce-8uK4NgtwHgnkLfio,893
|
|
181
186
|
biotite/sequence/graphics/color_schemes/blossom.json,sha256=puHv-OkH37s_6kPSM_Uq6wnbnHdGu08Mdq-QxNu2fv0,894
|
|
182
187
|
biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=54lrQvggpxSKGTy4n-yOvFrTwGxucJeo2ruzrghXfSk,259
|
|
@@ -190,7 +195,7 @@ biotite/sequence/graphics/color_schemes/jalview_prop_turn.json,sha256=Iw3f9dAmt9
|
|
|
190
195
|
biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=EIjhkViMxbIE67_YUGTi-JYv55bLLGVr9Y5ah_J4cug,729
|
|
191
196
|
biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=jzg12_f-7cmxtVKwgqNZCj1NxSKjKCUG2tZdc7ihvqA,728
|
|
192
197
|
biotite/sequence/graphics/color_schemes/ocean.json,sha256=hfQeJFs90GA4q85Is6kE6NROqctuQY_N8TvfbD1FvAU,892
|
|
193
|
-
biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=
|
|
198
|
+
biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=0OhKObhab7Oyj8ChVEGdOPz9FshhhPuakwUV5f5mS_4,716
|
|
194
199
|
biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=Lw_My4qOSFPRCpiEJWZQU4kUvy30mXx_-YS_gcIWqiU,258
|
|
195
200
|
biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=Ulm9UqjT_klqIz93g54qz5VxlKDJNSLi4ywpyElfCzU,782
|
|
196
201
|
biotite/sequence/graphics/color_schemes/spring.json,sha256=Yw49LbAU_TFE_L_mt4wocoiVUHpZEMjrAZi2pWUuR5s,893
|
|
@@ -216,10 +221,10 @@ biotite/sequence/phylo/__init__.py,sha256=aNP1B9DNNTXMyiqWkzF6JZFynlcmIg-bDeN-eD
|
|
|
216
221
|
biotite/sequence/phylo/nj.pyx,sha256=YOseJP7fKCnqhh8w3mK1z3fw6cKF5sU5oRkb1D3X9vI,7501
|
|
217
222
|
biotite/sequence/phylo/tree.pyx,sha256=kmT2kO9cH3svQOxsyuPLfbUsWnTNdfVrx5xaxcmTC3I,40374
|
|
218
223
|
biotite/sequence/phylo/upgma.pyx,sha256=llgc-9fEOU-D1a-ESMSIAoPjHvsd_L0-GnwkL-uzWNc,5376
|
|
219
|
-
biotite/structure/__init__.py,sha256=
|
|
220
|
-
biotite/structure/atoms.py,sha256=
|
|
224
|
+
biotite/structure/__init__.py,sha256=YNaoZja9BAB7HA1dEiMpvEg1jFieHUt6mRmpybIGGi0,5582
|
|
225
|
+
biotite/structure/atoms.py,sha256=GV47SmC_BBok1mZEiQBN4lwrSLR9bczWa1V2z42qt-Y,52012
|
|
221
226
|
biotite/structure/basepairs.py,sha256=eZF67fnecHkvDYnIlfeejdJC7sCDWYqOghjbweLoxFE,51163
|
|
222
|
-
biotite/structure/bonds.pyx,sha256=
|
|
227
|
+
biotite/structure/bonds.pyx,sha256=m23KZbTUR-iCso2soKPoURt5Dbqtfcaej5VpJBxt89U,71518
|
|
223
228
|
biotite/structure/box.py,sha256=zp80_Q4Xv5t2KIfrSK-SachkIbbK1mctl91mVrk5T3A,19186
|
|
224
229
|
biotite/structure/celllist.pyx,sha256=gGv_j-jVdoC6K-8Dw38Tc5Xq_KbEdFO5ZnvHZl__htA,35310
|
|
225
230
|
biotite/structure/chains.py,sha256=GjacD8hgSZemI7Bs8Y8zHpPy8I-iGUOoUSYpJ5cLuJY,9141
|
|
@@ -229,40 +234,44 @@ biotite/structure/density.py,sha256=jlWog4xJcaHRvtMiLQueeJJwzIH3ZnRiZSb-ZCDq9B8,
|
|
|
229
234
|
biotite/structure/dotbracket.py,sha256=MjJf6x67jME_tdFhKGhQtGUpwsgJkHKjmNL77bpxG7c,7048
|
|
230
235
|
biotite/structure/error.py,sha256=NaQBi7CGUYpa7-Y9t0We8iVEJwqpsNWLXkr1PTBKlxQ,822
|
|
231
236
|
biotite/structure/filter.py,sha256=e3xLwZobrhRJ-7uX4HeerstE5sC8b7RpIJ_mg9TTPEM,18557
|
|
232
|
-
biotite/structure/geometry.py,sha256=
|
|
237
|
+
biotite/structure/geometry.py,sha256=BunVOych9hEQOVSkHa94mw-r7egmJ_BpqU5cc_VUh_4,24078
|
|
233
238
|
biotite/structure/hbond.py,sha256=7eULKwg94uQY2G-3ea8M0yOOHi0-tl_2TV-Ia2lzLhI,15646
|
|
234
239
|
biotite/structure/integrity.py,sha256=ubkv2vA5yhb-3GIsX4ZHsAGiB-zQ30Pr_hUlpWHJcHw,7041
|
|
235
240
|
biotite/structure/mechanics.py,sha256=fjNrK0BDTyKDgnxK-hMG2P8uTnqSZWSFrZi6s0RBEeo,2661
|
|
236
|
-
biotite/structure/molecules.py,sha256=
|
|
241
|
+
biotite/structure/molecules.py,sha256=ySy3JUHpWubhpEPLNIVFGrRSEvzCBgQgT94VWgKQ2Yk,15856
|
|
237
242
|
biotite/structure/pseudoknots.py,sha256=29mW6yDiJ4_NYMH9sFWZEN7gfWHYmQpvOkXuG5DD5uk,22852
|
|
238
243
|
biotite/structure/rdf.py,sha256=XAkbnbfk0wx_cIlrDYXBMUzzShgICUCpyPPfTNviWBQ,8349
|
|
239
244
|
biotite/structure/repair.py,sha256=wAxye1HguqSqhELWEpuxIkaTkv3ZswDXTOhkEZhdchc,7300
|
|
240
245
|
biotite/structure/residues.py,sha256=iuVK2pVfU8qRCf7kmCbO8lfH4O4PfrECmbOjCk3B2sU,23026
|
|
241
246
|
biotite/structure/sasa.pyx,sha256=4G_5jJGRsUenLtVPr9mD9KlbYfmP4WnDY_iHXjJE_pw,13305
|
|
242
|
-
biotite/structure/segments.py,sha256=
|
|
247
|
+
biotite/structure/segments.py,sha256=6fg6m7bWZeuD61QdR05CigZ-D8UwM7H1q_RpZJ0ID6E,5684
|
|
243
248
|
biotite/structure/sequence.py,sha256=Hpt5FvDJG1tBY0eQJNri-DboeZ3BoADy9I_MzWlzOq8,4357
|
|
244
249
|
biotite/structure/sse.py,sha256=w_ww5JwImQKDlLQiaDZLEr49viP7WZyYg_p5n59Eguw,11714
|
|
245
250
|
biotite/structure/superimpose.py,sha256=37elE1zeY7cAAnF77B6zerQDqtnHZanpqjB_xcWlDSk,25813
|
|
246
251
|
biotite/structure/transform.py,sha256=7yuzqo0y4fVDOIYk_fhOuaeBIzPAL9HyMqYn4r9JJxQ,20179
|
|
247
|
-
biotite/structure/util.py,sha256=
|
|
252
|
+
biotite/structure/util.py,sha256=dP_LrUpQNqRQ3H_NFyK9fb1_B9EBvHzuGXjlDlGZVlI,5124
|
|
253
|
+
biotite/structure/alphabet/__init__.py,sha256=UxJZ1_WsI1SPs89ZGv4Xmr-n0pWwlQcBBglfJEXzanY,953
|
|
254
|
+
biotite/structure/alphabet/encoder.py,sha256=OMQXiMo6xnhIsWoCZ2xKvGpV28k24lM8LhL9cZDDFNE,11715
|
|
255
|
+
biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
|
|
256
|
+
biotite/structure/alphabet/i3d.py,sha256=2qLwtIkUfJkAnpTgDVooear-ezPqF2OJgLso32qC1Xk,3120
|
|
257
|
+
biotite/structure/alphabet/layers.py,sha256=aOevc3a-kL65MfcFsauXt7YBAfMd5V8y5Ch534EvgEc,2173
|
|
258
|
+
biotite/structure/alphabet/pb.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
|
|
259
|
+
biotite/structure/alphabet/pb.py,sha256=SmLghxYR1BFZztJdfm4JNWo43dwrZ29_HM7w60iiUa0,6166
|
|
260
|
+
biotite/structure/alphabet/unkerasify.py,sha256=YB7rF91jImlT95epwSY_fc_tIchxdcqli0fSYaTkIoE,3323
|
|
248
261
|
biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
|
|
249
262
|
biotite/structure/graphics/atoms.py,sha256=acZXrWVRblk83FfLePe3pHoMcjJJH2eEDyZFmqmw-xs,8359
|
|
250
263
|
biotite/structure/graphics/rna.py,sha256=7PSX9JHfo1840k8HqKcC8UXX-rxP8YwFtN_VLgUilbE,12311
|
|
251
|
-
biotite/structure/info/__init__.py,sha256=
|
|
264
|
+
biotite/structure/info/__init__.py,sha256=D1ure7j8lAfbLGqQricxHLuiDHf0FLzV_p4m5rd0dPQ,722
|
|
252
265
|
biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
|
|
253
|
-
biotite/structure/info/atoms.py,sha256=
|
|
254
|
-
biotite/structure/info/bonds.py,sha256=
|
|
255
|
-
biotite/structure/info/ccd.py,sha256=
|
|
256
|
-
biotite/structure/info/
|
|
257
|
-
biotite/structure/info/
|
|
258
|
-
biotite/structure/info/
|
|
266
|
+
biotite/structure/info/atoms.py,sha256=JVgBj9xR5W1ajciY4coTCBvkCss92ODPumtaNKhRlpA,2703
|
|
267
|
+
biotite/structure/info/bonds.py,sha256=7qp4EYo61x6j7OK9Eyolh7Pmg4PU8Rodr5_KfmnyzP8,4793
|
|
268
|
+
biotite/structure/info/ccd.py,sha256=nRl9W0dGIjumogw9IKZTJpI9Pr8zQ-wJ0tfInFtj49I,6055
|
|
269
|
+
biotite/structure/info/components.bcif,sha256=wwalqJIJBcRDT7wXyzWbn89uSsum-4Ah87ImtfpDMVE,57915331
|
|
270
|
+
biotite/structure/info/groups.py,sha256=NWcOXE6maZlkCCPHRLzovFYtIs8eGbpGHtJLmRqJIrU,3318
|
|
271
|
+
biotite/structure/info/masses.py,sha256=s8heq0bG33-6NTeRqA2WpoOqUy-mwQTfM5a7CWA0YE0,4676
|
|
272
|
+
biotite/structure/info/misc.py,sha256=w0raKiLvLaHOrf-ddn6ZdLCDuyNvy74VwbZ89eKiyk4,3567
|
|
259
273
|
biotite/structure/info/radii.py,sha256=NIy1knADXUw5zx6dMX08LHqXlfS62e98rsA6r3E8wWA,5807
|
|
260
|
-
biotite/structure/info/standardize.py,sha256=
|
|
261
|
-
biotite/structure/info/ccd/README.rst,sha256=GeRC_rNZkw9mmGBjSwiy6pgyzzYZEPh0IX5pMIjCruQ,349
|
|
262
|
-
biotite/structure/info/ccd/amino_acids.txt,sha256=l1yE8BcddZ8aJtMhDr0wfn_zRHy-am39xuMm80DIsuA,8332
|
|
263
|
-
biotite/structure/info/ccd/carbohydrates.txt,sha256=R6WD5xRqmmiYAQp6QrdtlSBF6IBVC4BeMPPl5keEMeA,5679
|
|
264
|
-
biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
|
|
265
|
-
biotite/structure/info/ccd/nucleotides.txt,sha256=rVTN65IGs1rfwDzjdhiaIZQ3mCGg3WvllNPSUWCBsoY,3934
|
|
274
|
+
biotite/structure/info/standardize.py,sha256=gZ1_AT2_d0w7mQ3tmnrh1j0QuQLhU-4X-LyVHtIcYws,7945
|
|
266
275
|
biotite/structure/io/__init__.py,sha256=d9zsCIGeTRQ_R8n5xBwi5jrfanRMEeCIh9E9xjmnqVQ,1027
|
|
267
276
|
biotite/structure/io/general.py,sha256=uZPbBq35Mp4TuqxAEMWFhUztvolzUzAxSKXXdMI6Pb8,8691
|
|
268
277
|
biotite/structure/io/trajfile.py,sha256=XnLmQ7AvD9mIbSclgQqAev069qqCL0hBRBG6mXtUO8k,25877
|
|
@@ -275,48 +284,49 @@ biotite/structure/io/mol/convert.py,sha256=_jGauQH97v_RJi9wHqiKdRusSTw2KN1R4kbkm
|
|
|
275
284
|
biotite/structure/io/mol/ctab.py,sha256=xHhXPLnoVAl06_FQetwCYRXewmQiJjolk2pwjiD8acs,13885
|
|
276
285
|
biotite/structure/io/mol/header.py,sha256=Ee78HGDy6DHQEaOh2AGyG0gQGsoMfqLPnfoCo0CwsyY,3545
|
|
277
286
|
biotite/structure/io/mol/mol.py,sha256=cY0wBIboaC-o-Mr270pJv-gSErAikFXZJhYpNYyBSoE,5610
|
|
278
|
-
biotite/structure/io/mol/sdf.py,sha256=
|
|
287
|
+
biotite/structure/io/mol/sdf.py,sha256=sNFz7Ob273b_LbwG0aeReoTML1yGCeKfA1aADZXMlFU,33228
|
|
279
288
|
biotite/structure/io/netcdf/__init__.py,sha256=BVUimn1EklpgdoCFE5sC-H4E47exDe_xIviMeGnn_tk,363
|
|
280
289
|
biotite/structure/io/netcdf/file.py,sha256=8jht6qCgw0Q7q1-WaQ1iCBjc1QLzjrwpppe3uBZhZ1Y,2256
|
|
281
290
|
biotite/structure/io/pdb/__init__.py,sha256=UqePAxP48oww8SEexxr6JlugRua8wgOryAvxmHd58f4,753
|
|
282
|
-
biotite/structure/io/pdb/convert.py,sha256=
|
|
283
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
291
|
+
biotite/structure/io/pdb/convert.py,sha256=TQ3CS94jCNDrWpM0cin37_JdkmGR4NORGZAR7KbkeCo,11027
|
|
292
|
+
biotite/structure/io/pdb/file.py,sha256=DKnR7I71L53Egtz-918xFQ3F1dtk6hfIu4OlTv6PsKw,51828
|
|
284
293
|
biotite/structure/io/pdb/hybrid36.pyx,sha256=-feGX_k9H7uAfbqmy37PvlWbuij-mknpbCR2ot1l4kk,8277
|
|
285
294
|
biotite/structure/io/pdbqt/__init__.py,sha256=JiBnbhNHevtmVIwEeYBubOzK5xu1d9dSny7Zf3Aas74,456
|
|
286
295
|
biotite/structure/io/pdbqt/convert.py,sha256=M2SytCYO2ihvpcUQCqz4PD4DAKwCPxcjGbhFhJjbDZY,4121
|
|
287
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
288
|
-
biotite/structure/io/pdbx/__init__.py,sha256=
|
|
289
|
-
biotite/structure/io/pdbx/bcif.py,sha256=
|
|
290
|
-
biotite/structure/io/pdbx/cif.py,sha256=
|
|
291
|
-
biotite/structure/io/pdbx/component.py,sha256=
|
|
292
|
-
biotite/structure/io/pdbx/
|
|
293
|
-
biotite/structure/io/pdbx/
|
|
296
|
+
biotite/structure/io/pdbqt/file.py,sha256=Y0RrMaW_98_kJ3JagGwk5F0DfedkxfG1KxaD1dU_9_Y,27321
|
|
297
|
+
biotite/structure/io/pdbx/__init__.py,sha256=0G68Qdc29KdXt0R9di2uBv4r173kuXXqGCbMtDdth0E,740
|
|
298
|
+
biotite/structure/io/pdbx/bcif.py,sha256=PWJ6N5_FLRHotGSqUbI1srgIym5XqyjsVv3kRtpfkcg,21294
|
|
299
|
+
biotite/structure/io/pdbx/cif.py,sha256=W3AtLUj4PhUCu3ogp2Dk3_K1CUbZ4FDQ-54RiPnjVbM,35581
|
|
300
|
+
biotite/structure/io/pdbx/component.py,sha256=kLS-7ozuPJUlFw08qp_56mC7NlNwJzYSJWWShmdiLHM,8485
|
|
301
|
+
biotite/structure/io/pdbx/compress.py,sha256=uSnqM1Dq9ZjhGXJ63oimdHNh-tfr95XM-67uIz6sauI,12121
|
|
302
|
+
biotite/structure/io/pdbx/convert.py,sha256=B3uwe1U0ZcadHnaD75UyeJf4dHSzcGNaQ3cSd1l9hgI,67380
|
|
303
|
+
biotite/structure/io/pdbx/encoding.pyx,sha256=Ckb9r27HTKLrxRE93Bf-im0mu5R9tuCTh_-2o4NwMWc,32214
|
|
294
304
|
biotite/structure/io/trr/__init__.py,sha256=xp4FpuAy_ESqzVWyugRXUHZ0iF8j5ox6EfCxSWhkcUY,372
|
|
295
305
|
biotite/structure/io/trr/file.py,sha256=XcdYOf9M2tjRXMM87p9U7jMdQb0PlTFvDHXHgSdjbl8,1278
|
|
296
306
|
biotite/structure/io/xtc/__init__.py,sha256=P17UBQnG-KmOlScHp46FXAb5i7d-ZCMlyljcOkFolMw,370
|
|
297
307
|
biotite/structure/io/xtc/file.py,sha256=X4iIDjAWn1ZySg3NjbPeSMNByoyH1y8asmtqcBYycpE,1278
|
|
298
|
-
biotite/sequence/codec.cp310-win_amd64.pyd,sha256=
|
|
299
|
-
biotite/structure/bonds.cp310-win_amd64.pyd,sha256=
|
|
300
|
-
biotite/structure/celllist.cp310-win_amd64.pyd,sha256=
|
|
301
|
-
biotite/structure/charges.cp310-win_amd64.pyd,sha256=
|
|
302
|
-
biotite/structure/sasa.cp310-win_amd64.pyd,sha256=
|
|
303
|
-
biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=
|
|
304
|
-
biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd,sha256=
|
|
305
|
-
biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=
|
|
306
|
-
biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=
|
|
307
|
-
biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=
|
|
308
|
-
biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=
|
|
309
|
-
biotite/sequence/align/multiple.cp310-win_amd64.pyd,sha256=
|
|
310
|
-
biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=
|
|
311
|
-
biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=
|
|
312
|
-
biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=
|
|
313
|
-
biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=
|
|
314
|
-
biotite/sequence/phylo/nj.cp310-win_amd64.pyd,sha256=
|
|
315
|
-
biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=
|
|
316
|
-
biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=
|
|
317
|
-
biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd,sha256=
|
|
318
|
-
biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd,sha256=
|
|
319
|
-
biotite-1.0.
|
|
320
|
-
biotite-1.0.
|
|
321
|
-
biotite-1.0.
|
|
322
|
-
biotite-1.0.
|
|
308
|
+
biotite/sequence/codec.cp310-win_amd64.pyd,sha256=7tRfvbwrV-pYDfpSO4Vbjq2kpaZ3vDNjF26EOTwPVoE,245760
|
|
309
|
+
biotite/structure/bonds.cp310-win_amd64.pyd,sha256=wo0b6harDvnnXvgae3Zmep92uOW0Ir0wiZLwPkOycWU,487936
|
|
310
|
+
biotite/structure/celllist.cp310-win_amd64.pyd,sha256=Xi4jlIsmSWerMA2q9zd4y7KAEwPYPxBKGjQWP9Rk1tU,254976
|
|
311
|
+
biotite/structure/charges.cp310-win_amd64.pyd,sha256=pyCK-VDyes0TGU2DSz2MVuLjqx3fNkxypXXMKebXwPY,218112
|
|
312
|
+
biotite/structure/sasa.cp310-win_amd64.pyd,sha256=AS6LfRxzPPoDO4IlOKYizKrRurSnYGBjnGazIi1A8wQ,193024
|
|
313
|
+
biotite/sequence/align/banded.cp310-win_amd64.pyd,sha256=EDUAZc2TZaX_UoKspn51J9TLqwo_7iWe6677xZiWdxA,495616
|
|
314
|
+
biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd,sha256=OUVWTlgaNnWvCQ4KCgkqhTiTJUdfGURwsi8O5ylg7Yo,335872
|
|
315
|
+
biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd,sha256=tOLkrdbRVxbpelxYMzIsillTQKv1dujdkcWaqhDZSmw,174592
|
|
316
|
+
biotite/sequence/align/kmertable.cp310-win_amd64.pyd,sha256=qFY4OFcLa-dhyFR3DpxuuVHB4uB7e1K7F6-BShlvr5w,603648
|
|
317
|
+
biotite/sequence/align/localgapped.cp310-win_amd64.pyd,sha256=FnBEKLg5SeJ-Q0uah2JxDlr7pI91_wqcJVqDLMTon_Y,991744
|
|
318
|
+
biotite/sequence/align/localungapped.cp310-win_amd64.pyd,sha256=kI0c2peRyukOpUi8trl2Jc8pPP6Ax-terYtEaNv90aE,260096
|
|
319
|
+
biotite/sequence/align/multiple.cp310-win_amd64.pyd,sha256=N7W7W378If7iRhzbwuJF_qPnFnnOgS7uT7Q1FPdtCUc,413696
|
|
320
|
+
biotite/sequence/align/pairwise.cp310-win_amd64.pyd,sha256=yi3IA4No3mQ_aUA9IwLXwgMq3x54V6sNiw5d_KSWAHU,535552
|
|
321
|
+
biotite/sequence/align/permutation.cp310-win_amd64.pyd,sha256=dJ9y8qc5KXAIpI1RHMha8TtevKNyB20aP8aoPCSmdCE,185344
|
|
322
|
+
biotite/sequence/align/selector.cp310-win_amd64.pyd,sha256=yQC-PTRPeiYIFU4dnA2sEjiPp0U3FBbshAFvAnQPFEM,257536
|
|
323
|
+
biotite/sequence/align/tracetable.cp310-win_amd64.pyd,sha256=WV_Q-VY04q2RR1kHtMboLdSHi765k7uvt6lm2HciWLw,151552
|
|
324
|
+
biotite/sequence/phylo/nj.cp310-win_amd64.pyd,sha256=XxKOVNLn2blCFNhE1Zi5neVqH0H_WtfJRAvz5JpK114,172032
|
|
325
|
+
biotite/sequence/phylo/tree.cp310-win_amd64.pyd,sha256=tBXfp0arbZ0MpZVfP7tN5_LortKOjaoygrRgNjWzRQw,211968
|
|
326
|
+
biotite/sequence/phylo/upgma.cp310-win_amd64.pyd,sha256=7Z_S9JcfaFL3qoi1sPKJq2FjgHv0kYfDiVMJWZyHhm8,164864
|
|
327
|
+
biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd,sha256=VMTFjO3h-bvLn9VqjP_9Z8YMXgdTvaOGhftqOqejL_8,151552
|
|
328
|
+
biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd,sha256=amAL794frnl9unFnx_Dt38pG_vDsX_7qtq0ksfc_NWU,1006080
|
|
329
|
+
biotite-1.1.0.dist-info/METADATA,sha256=AWoJEvD_xouBG2_P5lKh-FPZOZQ9C12cRsO8GsBMBfE,7224
|
|
330
|
+
biotite-1.1.0.dist-info/WHEEL,sha256=eNBqRHhwAIHkRN0IzK2Y894ATsq8QRbcKdgIDwxguGM,97
|
|
331
|
+
biotite-1.1.0.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
|
|
332
|
+
biotite-1.1.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
These files are based on the
|
|
2
|
-
`Chemical Component Dictionary <https://www.wwpdb.org/data/ccd>`_
|
|
3
|
-
and were created using ``setup_ccd.py``.
|
|
4
|
-
|
|
5
|
-
To keep the size of the repository small, the original commit should be
|
|
6
|
-
rewritten, if the formats of the affected files are compatible with the
|
|
7
|
-
original ones.
|
|
8
|
-
The name of the commit is ``Add CCD dataset``.
|