biotite 1.0.1__cp312-cp312-win_amd64.whl → 1.1.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.

Files changed (90) hide show
  1. biotite/application/dssp/app.py +13 -3
  2. biotite/application/localapp.py +34 -0
  3. biotite/application/muscle/app3.py +2 -15
  4. biotite/application/muscle/app5.py +2 -2
  5. biotite/application/util.py +1 -1
  6. biotite/application/viennarna/rnaplot.py +6 -2
  7. biotite/database/rcsb/query.py +6 -6
  8. biotite/database/uniprot/check.py +20 -15
  9. biotite/database/uniprot/download.py +1 -1
  10. biotite/database/uniprot/query.py +1 -1
  11. biotite/sequence/align/alignment.py +16 -3
  12. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  13. biotite/sequence/align/banded.pyx +5 -5
  14. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmeralphabet.pyx +17 -0
  16. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  17. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/kmertable.pyx +52 -42
  19. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  21. biotite/sequence/align/matrix.py +273 -55
  22. biotite/sequence/align/matrix_data/3Di.mat +24 -0
  23. biotite/sequence/align/matrix_data/PB.license +21 -0
  24. biotite/sequence/align/matrix_data/PB.mat +18 -0
  25. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  27. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  29. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  30. biotite/sequence/alphabet.py +3 -0
  31. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  32. biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
  33. biotite/sequence/graphics/color_schemes/pb_flower.json +2 -1
  34. biotite/sequence/graphics/colorschemes.py +44 -11
  35. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  37. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  38. biotite/sequence/profile.py +86 -4
  39. biotite/sequence/seqtypes.py +124 -3
  40. biotite/setup_ccd.py +197 -0
  41. biotite/structure/__init__.py +4 -3
  42. biotite/structure/alphabet/__init__.py +25 -0
  43. biotite/structure/alphabet/encoder.py +332 -0
  44. biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
  45. biotite/structure/alphabet/i3d.py +110 -0
  46. biotite/structure/alphabet/layers.py +86 -0
  47. biotite/structure/alphabet/pb.license +21 -0
  48. biotite/structure/alphabet/pb.py +171 -0
  49. biotite/structure/alphabet/unkerasify.py +122 -0
  50. biotite/structure/atoms.py +129 -40
  51. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  52. biotite/structure/bonds.pyx +72 -21
  53. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  54. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  55. biotite/structure/geometry.py +60 -113
  56. biotite/structure/info/__init__.py +1 -0
  57. biotite/structure/info/atoms.py +13 -13
  58. biotite/structure/info/bonds.py +12 -6
  59. biotite/structure/info/ccd.py +125 -32
  60. biotite/structure/info/{ccd/components.bcif → components.bcif} +0 -0
  61. biotite/structure/info/groups.py +63 -17
  62. biotite/structure/info/masses.py +9 -6
  63. biotite/structure/info/misc.py +15 -21
  64. biotite/structure/info/standardize.py +3 -2
  65. biotite/structure/io/mol/sdf.py +41 -40
  66. biotite/structure/io/pdb/convert.py +2 -0
  67. biotite/structure/io/pdb/file.py +74 -3
  68. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  69. biotite/structure/io/pdbqt/file.py +32 -32
  70. biotite/structure/io/pdbx/__init__.py +1 -0
  71. biotite/structure/io/pdbx/bcif.py +32 -8
  72. biotite/structure/io/pdbx/cif.py +72 -59
  73. biotite/structure/io/pdbx/component.py +9 -4
  74. biotite/structure/io/pdbx/compress.py +321 -0
  75. biotite/structure/io/pdbx/convert.py +194 -48
  76. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  77. biotite/structure/io/pdbx/encoding.pyx +98 -17
  78. biotite/structure/molecules.py +141 -141
  79. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  80. biotite/structure/segments.py +1 -2
  81. biotite/structure/util.py +73 -1
  82. biotite/version.py +2 -2
  83. {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/METADATA +3 -1
  84. {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/RECORD +86 -76
  85. biotite/structure/info/ccd/README.rst +0 -8
  86. biotite/structure/info/ccd/amino_acids.txt +0 -1663
  87. biotite/structure/info/ccd/carbohydrates.txt +0 -1135
  88. biotite/structure/info/ccd/nucleotides.txt +0 -798
  89. {biotite-1.0.1.dist-info → biotite-1.1.0.dist-info}/WHEEL +0 -0
  90. {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/version.py,sha256=XglbmfebHuSdifAMbIgy8xq3Isq3dxwcF1ZQoKBpUa0,427
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=MAhpvSbooc5VqfEgrXyZaRZ8QHs2N7NFX_vXvGIOKvU,9594
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=rmtP_KHmP3WuZnfPRT2mpU_BvI9cRaDqWxUlupnaPl4,2152
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=OvpOBF0H5UKua4bhXv-F2hcHFmWy8P9CMyvrVHH7lVs,4989
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=b08T6ID4NJ-Pbw_R0NCI2a5lvB-_5alcDM6TBXW5IiY,8325
25
- biotite/application/muscle/app5.py,sha256=TGIQzz8BCw_R2fqcEFm3P1E-QiYl5OzAvzSvwrzGZZQ,4589
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=C9Nfw6fBDfm2Yz_WCVtdmg_hovXKMUM2pMzMs21Lulw,6529
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=ygCFI2JguXbofOlAKKckhC5N_eLV-eXrwkbU2ck7-Eg,33866
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=CLY9XaxuhY6-GkwfY8_mtLJVChsh_tRYTf_AfjFyeoQ,1327
53
- biotite/database/uniprot/download.py,sha256=pCdJ3ihdlW6tMNQIyniZ1kTBABF7qHxmDZuE_NX1wHk,4449
54
- biotite/database/uniprot/query.py,sha256=_iqdxWKBIfmFlb7gZw-pQDj-2-KTwFYeyfcHO2n7oiI,7856
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=PM_aKD5ivsU5Ral_z6SuKw6rX-wkB3CWOlZs_9VzMr4,17742
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=sEp5UYFykZwjge94xlVmCxJtFVE6LrrCfZ9hnABbjWg,17611
62
+ biotite/sequence/profile.py,sha256=62fXOvouRGuPZ1TD-Y73DI0ui7ZOzSwX1hDCCGtJmrg,19942
62
63
  biotite/sequence/search.py,sha256=J6ogMj58ft6bLGUw6IMckwG4nJonIojiICyAvv7mn7w,3207
63
- biotite/sequence/seqtypes.py,sha256=ACzLqjzrzE0PJSjv-GKDHaNHK_sQ4EHtug-vPl4r5qc,19938
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=aUMXPUrtTmXRhTUX9q2KIHjEwa1rM22t3Ue_q9aoqfg,22018
67
- biotite/sequence/align/banded.pyx,sha256=LmRd4yR3lozB9usUvvREsbSsHMTFIAMC3RXbUbaawTs,26043
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=gNnkUJa1aEIhpxG_pPa6ChcG7PuW5ZJUM3RsnlSXoyw,18693
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=IkmJgU-3e5qT3TTVfPXWc-Z7L8SqmWWUhwOqe4gOSD0,124735
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=Xwc6MKCsy7e9tcJn5pXkWs-5-lvvC_Nv8WIvzoJkqLA,13124
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=BO1Y9VnCTLBcN3XiL6G29oWt8T8D5KWuM8IegC-KOyU,4610
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=tFGmH2bKbT1NEtrpKDYVAfU7Qv1FYF6N86bt4FoudBI,702
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=KwHwWyOA4EETmuAvS894YV7jWXopuCh1CWfKY9rmfCc,5456
220
- biotite/structure/atoms.py,sha256=6eFRFYTXVokF-0NehXxhxcP_AoWxZKjJGk-UpP-Iig8,48876
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=hR_vTYigOv06EdV9TnxdGFSM6WdZrCAV6w9coquSFWg,69917
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=1myUT4HVwMzcz6e_CA2yf6BOKPx5ZFK4xCykA_wLHm0,25766
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=sFXmT-i-nJPjMLI_YUr9-xESzDu8QRC_jfFkEtp_2zw,15856
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=7qTacvlpheHHo_WgHcSIN_aZ-FN97ksGuNwwS_cC9xw,5725
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=C5nrQ6la_MMT8-dURLDnylvMnpYaAb-1WvTJcsyzkAc,2296
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=Sp3hhSL45bNtaoAMue1CuHwOcC8D39zMzuCispcrNLA,702
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=u0nuWmTFhxtXjOsOQQIf0gH3zahGt5oEyrNEtX9AGZI,2703
254
- biotite/structure/info/bonds.py,sha256=BwfXvRBUYboNLeFzUEeKdSG0mJWiBRijJv1RTIhKPgI,4644
255
- biotite/structure/info/ccd.py,sha256=NnaaMLNb3gDbgABYqA9Rn_qZynL-Cn6DCjUolQ_MEZE,3111
256
- biotite/structure/info/groups.py,sha256=8SGEC4SNAULcrYCPx_olpESbx13aa0dYAu8HvCiTlGs,2068
257
- biotite/structure/info/masses.py,sha256=VQ4kOKtcBgx5UiZVP6PC14PQcdwmNiTH_YQCtyTQoq8,4601
258
- biotite/structure/info/misc.py,sha256=aUImiOGxWuMDMSu_YJW3AiSlPPFoougDSHsev8OH5Rc,3656
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=3G1pPjnJruBARwe5P4YuQuLSWfNHMKHzWB6_rmHfReY,7898
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=kERmWpbzjnkPafWHU1PZI2zGk-GT3aWdJ_5TbaTeOI8,33158
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=a0W8kqzuuHegPnue-a3Ds7BZErU5EfE3qG8LhE-GMI8,10907
283
- biotite/structure/io/pdb/file.py,sha256=IHzDyyXuIuVRhcmUz-KJOdLrkhf-owtc3PA2aoSmpsI,49115
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=aXhDPIkoDrQEoZm5-iPCF0JwRdrsHocezLNUzHjPO2A,27321
288
- biotite/structure/io/pdbx/__init__.py,sha256=6l-w3pEY3LYCnVC55bFe50K5nEFCk1zxzgacV1sQ4H8,715
289
- biotite/structure/io/pdbx/bcif.py,sha256=9yoYIW6ea617mz461ps5bqMc36OEjuNi2uk9Cp4odCw,20452
290
- biotite/structure/io/pdbx/cif.py,sha256=4gZk9mPslZoFEROiCg_8W6Lc6CPcI_yc7S5LybkxUNo,35517
291
- biotite/structure/io/pdbx/component.py,sha256=B5QxWiaCABuauX4GJiqoaTExAGnzzZQxksj46-AWZQg,8266
292
- biotite/structure/io/pdbx/convert.py,sha256=F1s2RBcR73ea_RYI36tE6kAGmX4C0k6_Tq2woFJXVtA,61807
293
- biotite/structure/io/pdbx/encoding.pyx,sha256=fjob-qQN3qiIo6KfmKla6401oIM5zjMaeK4LqdJbmU4,29674
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.cp312-win_amd64.pyd,sha256=nZygcLyhvWA_G5ri8v4_Zb8Q-mbFY7Kyk9HbH35oeVg,254976
299
- biotite/structure/bonds.cp312-win_amd64.pyd,sha256=uc2TYEdr5WBYkuzBURsqdj01GSbIXm-sYfkCdu61dl8,481792
300
- biotite/structure/celllist.cp312-win_amd64.pyd,sha256=CCzbj1rC0injlPzoKJq0fEwaPZAnivPUMlB--jk-Cf0,254976
301
- biotite/structure/charges.cp312-win_amd64.pyd,sha256=Im7wiLhp1tjy9yRStsnekdnUnvOoHroyvPLPU1R_sT8,214528
302
- biotite/structure/sasa.cp312-win_amd64.pyd,sha256=iIvD__DQPLAgO5Ae73XMlQLd1fyRGOEBBFJtOSCr1pQ,195072
303
- biotite/sequence/align/banded.cp312-win_amd64.pyd,sha256=QE2CLoUrSGgGx8BOCKlWlg3KCed59-UOkjIlxiHPOU4,509952
304
- biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd,sha256=il2byPLrPw9N-Kbm1JBXPT-tH7-xED8LDYTH_reRXIs,316416
305
- biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd,sha256=5SsrFlvCHwRSs3ezZTmGD5ZUgXipDnDJAA0uMGMceC0,180224
306
- biotite/sequence/align/kmertable.cp312-win_amd64.pyd,sha256=TzLyHklsVZFznYbmLZAdiCrQsz8Oo6BgFqv1mWX8vS8,598528
307
- biotite/sequence/align/localgapped.cp312-win_amd64.pyd,sha256=C4ict7o07h-L_VFBNNa3q6Yz1zUep6H60HeFAJ4IVl8,961536
308
- biotite/sequence/align/localungapped.cp312-win_amd64.pyd,sha256=oQaRvb6Ubzjktsq2Zbj0MNEFtm3gZ8NcRAVGt-FzJk4,268800
309
- biotite/sequence/align/multiple.cp312-win_amd64.pyd,sha256=m89E1uX4NCN9cShzH8jn_6GI8PzI6-Bm-NaSyLso6NA,415232
310
- biotite/sequence/align/pairwise.cp312-win_amd64.pyd,sha256=vXrv_53XaBRYgN13qebdxQr7hW-Af9t6XLZIyHJb3e8,558080
311
- biotite/sequence/align/permutation.cp312-win_amd64.pyd,sha256=344hNi6wOTEGA-xFrC0orW7pxjvreSDGopVO03TXISE,187904
312
- biotite/sequence/align/selector.cp312-win_amd64.pyd,sha256=9nvHHvzzpMgX0OFBaPWKh4UjrWo5VSGoRRD3HWKG_vw,260608
313
- biotite/sequence/align/tracetable.cp312-win_amd64.pyd,sha256=b8cJnBRVrh-BpZowu5chONu2Rd5lyQSE0E5ZeLZ2qfA,155136
314
- biotite/sequence/phylo/nj.cp312-win_amd64.pyd,sha256=AkszXnMChNi_k_1aKQdyxmyYdKLLABnSuraizO42Pn8,174592
315
- biotite/sequence/phylo/tree.cp312-win_amd64.pyd,sha256=koPsNx129i8gw0QSMLa38Rk1EoVKlbiU5qe-OlPmfUU,213504
316
- biotite/sequence/phylo/upgma.cp312-win_amd64.pyd,sha256=HmhBN0qcTdUHi6swiQV4SrAQaKE_t5V-KbA4gjuJziM,167936
317
- biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd,sha256=Fujx-x5SRZGlf7ohZfc4Jmr8YQYo9k3l23U9bZ9JJow,157184
318
- biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd,sha256=NkAojF5g0dK2njrnxS6Qw4osvOlBTDAWld8NnXNIew0,965632
319
- biotite-1.0.1.dist-info/METADATA,sha256=lnwl1IjHDLJ5EVhHYSUQplx3-4Ql4gbbezrkspTCRK8,7159
320
- biotite-1.0.1.dist-info/WHEEL,sha256=0yvOpux-t-GSpU6hzV2G8aI2S6VEJM0YxE2k-ZU-NeA,97
321
- biotite-1.0.1.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
322
- biotite-1.0.1.dist-info/RECORD,,
308
+ biotite/sequence/codec.cp312-win_amd64.pyd,sha256=n6q5V6easAahj3NA0J-8ayY-eAX8ebefwP1D0AI5Vq0,253952
309
+ biotite/structure/bonds.cp312-win_amd64.pyd,sha256=dmtAuejvqHSQTJ72wknuHtxI8Q2Zaqy38uFSWGj_wO0,482304
310
+ biotite/structure/celllist.cp312-win_amd64.pyd,sha256=jLtZ75PP3iQDF4MPy188UA4KzsI3RVcolGQ2iof21tk,253952
311
+ biotite/structure/charges.cp312-win_amd64.pyd,sha256=Xjp-BfBiC7YAog5xSHFQY2LuuyXryV_vmGRl2Kq9DiI,215040
312
+ biotite/structure/sasa.cp312-win_amd64.pyd,sha256=hKzC00v3XNQGhev_cJZLmWilBPPrs7rggtTEVixaegQ,195072
313
+ biotite/sequence/align/banded.cp312-win_amd64.pyd,sha256=JE_Pz5B3Da_JZbWzUbw1-EdpeoP6FD-YxcVEIGplSD8,506368
314
+ biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd,sha256=1e5rElhj7R38SZ0GVGX6etm6zcmxBzRgf0W4hR05rqY,334848
315
+ biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd,sha256=YQbZYyoexfC_Fuv--LCP0YnTsJ8QmZO2XNYkmnaOobY,179200
316
+ biotite/sequence/align/kmertable.cp312-win_amd64.pyd,sha256=0cyzTw_VOvNPQ5tGH6pznmNga4gGZKbBe1oO7GgfdgI,594432
317
+ biotite/sequence/align/localgapped.cp312-win_amd64.pyd,sha256=TSOtV-uxBiXtSQKOC12VjHNbTUXcjMzKv3sF5PjFrbE,960512
318
+ biotite/sequence/align/localungapped.cp312-win_amd64.pyd,sha256=TaJqsVrUu67sjRjP4JEQB5PVOilTEh_jWSFiyoBB22w,267776
319
+ biotite/sequence/align/multiple.cp312-win_amd64.pyd,sha256=q6ppTYo_ctBW8XSYrG57g0p-k__wpmr4G-tDbBPrYU0,413696
320
+ biotite/sequence/align/pairwise.cp312-win_amd64.pyd,sha256=By6Vr9qt3tQuRcRc1xb-USz5M0yNg5Z1Lv-CqCJ_aXY,551424
321
+ biotite/sequence/align/permutation.cp312-win_amd64.pyd,sha256=rum938f1HpNkLNJtyjRzszcUHkXbSDI-MvFn31UnHVw,187904
322
+ biotite/sequence/align/selector.cp312-win_amd64.pyd,sha256=hL7BbCu-GpUGDd3lDb-zlhQ8nmY16bfHm4S4af5SzuY,260096
323
+ biotite/sequence/align/tracetable.cp312-win_amd64.pyd,sha256=b0AhuFMITZ_dtwiLAFQHWUu9f1JicaBeVfBpt0raPN8,154624
324
+ biotite/sequence/phylo/nj.cp312-win_amd64.pyd,sha256=8LRzDUh1PuwzF4oZOdkkqoqhcCFtSOQQj6dCCT45ojk,174080
325
+ biotite/sequence/phylo/tree.cp312-win_amd64.pyd,sha256=zanjEfWCqfKD8q8oKI3d4whV_5RZoi_yOp7USsPR42Q,213504
326
+ biotite/sequence/phylo/upgma.cp312-win_amd64.pyd,sha256=OUTQAe9skMfXJ4EeJl6nFW4AL-4h-sImbfA5UNRdUuA,167424
327
+ biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd,sha256=b8a36EWL5W-ZN2EPto-yJBpVLYGyjo6WW00EbTga-4o,156672
328
+ biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd,sha256=CJ178bBbPCv17Y9mBhacGlhu9TlVePj17fLjtqfh54k,964608
329
+ biotite-1.1.0.dist-info/METADATA,sha256=AWoJEvD_xouBG2_P5lKh-FPZOZQ9C12cRsO8GsBMBfE,7224
330
+ biotite-1.1.0.dist-info/WHEEL,sha256=0yvOpux-t-GSpU6hzV2G8aI2S6VEJM0YxE2k-ZU-NeA,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``.