biotite 1.0.1__cp311-cp311-win_amd64.whl → 1.2.0__cp311-cp311-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 (177) hide show
  1. biotite/application/application.py +3 -3
  2. biotite/application/autodock/app.py +1 -1
  3. biotite/application/blast/webapp.py +1 -1
  4. biotite/application/clustalo/app.py +1 -1
  5. biotite/application/dssp/app.py +13 -3
  6. biotite/application/localapp.py +36 -2
  7. biotite/application/msaapp.py +10 -10
  8. biotite/application/muscle/app3.py +5 -18
  9. biotite/application/muscle/app5.py +5 -5
  10. biotite/application/sra/app.py +0 -5
  11. biotite/application/util.py +22 -2
  12. biotite/application/viennarna/rnaalifold.py +8 -8
  13. biotite/application/viennarna/rnaplot.py +9 -3
  14. biotite/application/viennarna/util.py +1 -1
  15. biotite/application/webapp.py +1 -1
  16. biotite/database/afdb/__init__.py +12 -0
  17. biotite/database/afdb/download.py +191 -0
  18. biotite/database/entrez/dbnames.py +10 -0
  19. biotite/database/entrez/download.py +9 -10
  20. biotite/database/entrez/key.py +1 -1
  21. biotite/database/entrez/query.py +5 -4
  22. biotite/database/pubchem/download.py +6 -6
  23. biotite/database/pubchem/error.py +10 -0
  24. biotite/database/pubchem/query.py +12 -23
  25. biotite/database/rcsb/download.py +3 -2
  26. biotite/database/rcsb/query.py +8 -9
  27. biotite/database/uniprot/check.py +22 -17
  28. biotite/database/uniprot/download.py +3 -6
  29. biotite/database/uniprot/query.py +4 -5
  30. biotite/file.py +14 -2
  31. biotite/interface/__init__.py +19 -0
  32. biotite/interface/openmm/__init__.py +16 -0
  33. biotite/interface/openmm/state.py +93 -0
  34. biotite/interface/openmm/system.py +227 -0
  35. biotite/interface/pymol/__init__.py +198 -0
  36. biotite/interface/pymol/cgo.py +346 -0
  37. biotite/interface/pymol/convert.py +185 -0
  38. biotite/interface/pymol/display.py +267 -0
  39. biotite/interface/pymol/object.py +1226 -0
  40. biotite/interface/pymol/shapes.py +178 -0
  41. biotite/interface/pymol/startup.py +169 -0
  42. biotite/interface/rdkit/__init__.py +15 -0
  43. biotite/interface/rdkit/mol.py +490 -0
  44. biotite/interface/version.py +71 -0
  45. biotite/interface/warning.py +19 -0
  46. biotite/sequence/align/__init__.py +0 -4
  47. biotite/sequence/align/alignment.py +49 -14
  48. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  49. biotite/sequence/align/banded.pyx +26 -26
  50. biotite/sequence/align/cigar.py +2 -2
  51. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  52. biotite/sequence/align/kmeralphabet.pyx +19 -2
  53. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  54. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  55. biotite/sequence/align/kmertable.pyx +58 -48
  56. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  57. biotite/sequence/align/localgapped.pyx +47 -47
  58. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  59. biotite/sequence/align/localungapped.pyx +10 -10
  60. biotite/sequence/align/matrix.py +284 -57
  61. biotite/sequence/align/matrix_data/3Di.mat +24 -0
  62. biotite/sequence/align/matrix_data/PB.license +21 -0
  63. biotite/sequence/align/matrix_data/PB.mat +18 -0
  64. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  65. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  66. biotite/sequence/align/pairwise.pyx +35 -35
  67. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  68. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  69. biotite/sequence/align/selector.pyx +2 -2
  70. biotite/sequence/align/statistics.py +1 -1
  71. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  72. biotite/sequence/alphabet.py +5 -2
  73. biotite/sequence/annotation.py +19 -13
  74. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  75. biotite/sequence/codon.py +1 -2
  76. biotite/sequence/graphics/alignment.py +25 -39
  77. biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
  78. biotite/sequence/graphics/color_schemes/pb_flower.json +2 -1
  79. biotite/sequence/graphics/colorschemes.py +44 -11
  80. biotite/sequence/graphics/dendrogram.py +4 -2
  81. biotite/sequence/graphics/features.py +2 -2
  82. biotite/sequence/graphics/logo.py +10 -12
  83. biotite/sequence/io/fasta/convert.py +1 -2
  84. biotite/sequence/io/fasta/file.py +1 -1
  85. biotite/sequence/io/fastq/file.py +3 -3
  86. biotite/sequence/io/genbank/file.py +3 -3
  87. biotite/sequence/io/genbank/sequence.py +2 -0
  88. biotite/sequence/io/gff/convert.py +1 -1
  89. biotite/sequence/io/gff/file.py +1 -2
  90. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  91. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  92. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  93. biotite/sequence/profile.py +105 -29
  94. biotite/sequence/search.py +0 -1
  95. biotite/sequence/seqtypes.py +136 -8
  96. biotite/sequence/sequence.py +1 -2
  97. biotite/setup_ccd.py +197 -0
  98. biotite/structure/__init__.py +6 -3
  99. biotite/structure/alphabet/__init__.py +25 -0
  100. biotite/structure/alphabet/encoder.py +332 -0
  101. biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
  102. biotite/structure/alphabet/i3d.py +109 -0
  103. biotite/structure/alphabet/layers.py +86 -0
  104. biotite/structure/alphabet/pb.license +21 -0
  105. biotite/structure/alphabet/pb.py +170 -0
  106. biotite/structure/alphabet/unkerasify.py +128 -0
  107. biotite/structure/atoms.py +163 -66
  108. biotite/structure/basepairs.py +26 -26
  109. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  110. biotite/structure/bonds.pyx +79 -25
  111. biotite/structure/box.py +19 -21
  112. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  113. biotite/structure/celllist.pyx +83 -67
  114. biotite/structure/chains.py +5 -37
  115. biotite/structure/charges.cp311-win_amd64.pyd +0 -0
  116. biotite/structure/compare.py +420 -13
  117. biotite/structure/density.py +1 -1
  118. biotite/structure/dotbracket.py +27 -28
  119. biotite/structure/filter.py +8 -8
  120. biotite/structure/geometry.py +74 -127
  121. biotite/structure/hbond.py +17 -19
  122. biotite/structure/info/__init__.py +1 -0
  123. biotite/structure/info/atoms.py +24 -15
  124. biotite/structure/info/bonds.py +12 -6
  125. biotite/structure/info/ccd.py +125 -34
  126. biotite/structure/info/{ccd/components.bcif → components.bcif} +0 -0
  127. biotite/structure/info/groups.py +62 -19
  128. biotite/structure/info/masses.py +9 -6
  129. biotite/structure/info/misc.py +15 -22
  130. biotite/structure/info/radii.py +92 -22
  131. biotite/structure/info/standardize.py +4 -4
  132. biotite/structure/integrity.py +4 -6
  133. biotite/structure/io/general.py +2 -2
  134. biotite/structure/io/gro/file.py +8 -9
  135. biotite/structure/io/mol/convert.py +1 -1
  136. biotite/structure/io/mol/ctab.py +33 -28
  137. biotite/structure/io/mol/mol.py +1 -1
  138. biotite/structure/io/mol/sdf.py +80 -53
  139. biotite/structure/io/pdb/convert.py +4 -3
  140. biotite/structure/io/pdb/file.py +85 -25
  141. biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
  142. biotite/structure/io/pdbqt/file.py +36 -36
  143. biotite/structure/io/pdbx/__init__.py +1 -0
  144. biotite/structure/io/pdbx/bcif.py +54 -15
  145. biotite/structure/io/pdbx/cif.py +92 -66
  146. biotite/structure/io/pdbx/component.py +15 -4
  147. biotite/structure/io/pdbx/compress.py +321 -0
  148. biotite/structure/io/pdbx/convert.py +410 -75
  149. biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
  150. biotite/structure/io/pdbx/encoding.pyx +98 -17
  151. biotite/structure/io/trajfile.py +9 -6
  152. biotite/structure/io/util.py +38 -0
  153. biotite/structure/mechanics.py +0 -1
  154. biotite/structure/molecules.py +141 -156
  155. biotite/structure/pseudoknots.py +7 -13
  156. biotite/structure/repair.py +2 -4
  157. biotite/structure/residues.py +13 -24
  158. biotite/structure/rings.py +335 -0
  159. biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
  160. biotite/structure/sasa.pyx +2 -1
  161. biotite/structure/segments.py +69 -11
  162. biotite/structure/sequence.py +0 -1
  163. biotite/structure/sse.py +0 -2
  164. biotite/structure/superimpose.py +74 -62
  165. biotite/structure/tm.py +581 -0
  166. biotite/structure/transform.py +12 -25
  167. biotite/structure/util.py +76 -4
  168. biotite/version.py +9 -4
  169. biotite/visualize.py +111 -1
  170. {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/METADATA +6 -2
  171. {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/RECORD +173 -143
  172. biotite/structure/info/ccd/README.rst +0 -8
  173. biotite/structure/info/ccd/amino_acids.txt +0 -1663
  174. biotite/structure/info/ccd/carbohydrates.txt +0 -1135
  175. biotite/structure/info/ccd/nucleotides.txt +0 -798
  176. {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/WHEEL +0 -0
  177. {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/licenses/LICENSE.rst +0 -0
@@ -1,86 +1,105 @@
1
1
  biotite/__init__.py,sha256=gzqOy5P7Zf667uYuUwqjLLW0GiBdqc23NLcZaXMuHKw,563
2
2
  biotite/copyable.py,sha256=Qnja44k58dAc3WkIUM0svqrbvqO9pSV-Atr9MUJSoCI,1968
3
- biotite/file.py,sha256=oZdBRv34nrGFJ7ZIrSW9uf4NSk9H3Mg0WxgbQqxibbU,6756
4
- biotite/version.py,sha256=XglbmfebHuSdifAMbIgy8xq3Isq3dxwcF1ZQoKBpUa0,427
5
- biotite/visualize.py,sha256=d926kscZJdQKYM9v7CUaAeMial11N8l_NyC7_fVv7wQ,10277
3
+ biotite/file.py,sha256=ktpRUk0OH5_wKIJHtCX3zDjXeJ3eQ4ycDjpp7HttUYM,6977
4
+ biotite/setup_ccd.py,sha256=9StRz4qPVdTJNrPUoA_liwvkKnTb8O0U8PDxt1tDVwc,6248
5
+ biotite/version.py,sha256=bkKCVnDOy6zWTEO3tQhqGU5jAs0SW1QnX5UfCnuEW3U,532
6
+ biotite/visualize.py,sha256=z4lBfJAt5YxGqtgxgcLHKMwVcE4u6fqExEyrOHcSiaY,14330
6
7
  biotite/application/__init__.py,sha256=Rei3EwlpCnC_cJNQoTJYY_Gw_qLdsqgnRxV5b1slHJU,3148
7
- biotite/application/application.py,sha256=WKGVuCJ5WTwuoOmSWAklZwAGbEgJaTdf3fFmb4f1Iv8,8374
8
- biotite/application/localapp.py,sha256=MAhpvSbooc5VqfEgrXyZaRZ8QHs2N7NFX_vXvGIOKvU,9594
9
- biotite/application/msaapp.py,sha256=NZJVMWyx7TgiDI5NP7FMZx1ZOUfYJU8wKxBqcle-Pmg,12339
10
- biotite/application/util.py,sha256=rmtP_KHmP3WuZnfPRT2mpU_BvI9cRaDqWxUlupnaPl4,2152
11
- biotite/application/webapp.py,sha256=zkkMc9zyaDancX24TwUkBSKA2NQR70QQLALVZ9XZKHc,2237
8
+ biotite/application/application.py,sha256=J9ydVvN_5C3nYuLl12EPBhM67i0GQm6MPy0F1K-jdgc,8372
9
+ biotite/application/localapp.py,sha256=eRV926GjvicYCTODIO2IOhwHfw2sjoHvhLxoOW5WScQ,10609
10
+ biotite/application/msaapp.py,sha256=X4nb0sXHWSBn8n2dLPScMJMVRtHegW2JhmjVmUzv_-c,12337
11
+ biotite/application/util.py,sha256=z05IiFQXGaVW3pdUeeHL6izCaxZNrGbs10k9P79gID8,2580
12
+ biotite/application/webapp.py,sha256=g2NJ7Fn1-28HC-saOd62ohp-s77WSsqqcVc_2N96al0,2221
12
13
  biotite/application/autodock/__init__.py,sha256=QtcZDgjFXYaHYSoVtnx8Bs2YA9TvwCg0fSkMfrxKK3k,327
13
- biotite/application/autodock/app.py,sha256=zfqKFYT6K8zKrHN1uotIX-gBAKdj_kzB7klRThxClO8,19186
14
+ biotite/application/autodock/app.py,sha256=30-FGdjutoj5pHCxiedZywrzeFRm0Fv45eVpFaO84YU,19192
14
15
  biotite/application/blast/__init__.py,sha256=90FNcYrxTkEGlzf8RSR1uQkSp4BF42S99XK6FXnmUY4,380
15
16
  biotite/application/blast/alignment.py,sha256=aPbMz_qyH8Izl_g24BQKgvh6McYXyx0tPsGcocwQ4E8,3209
16
- biotite/application/blast/webapp.py,sha256=byuSfcaKHKokxUwf2fjT3-DTtqsiSD0gB3lysGi7Wg8,14891
17
+ biotite/application/blast/webapp.py,sha256=7-r_Jw7gHysUb8Zjsv5mc0WyFdbWblamqVXYq2He0-A,14875
17
18
  biotite/application/clustalo/__init__.py,sha256=UtEQiS9nDZF9-Sup3kbi06mTjv6YRD9Qbu5A722bNlY,338
18
- biotite/application/clustalo/app.py,sha256=TMZEHqZc_czqAFtsEg9cYIPTCCLltbgbEqC6zhas2WM,7640
19
+ biotite/application/clustalo/app.py,sha256=hBnmdh2nhA1ipxz4OzVZ52UMyA0hqxf_MAej3bygbWU,7637
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=pJtzRTyByxVFpcjMJCEBP4UWfRslpk5pc6lPuOjrbNE,7880
26
+ biotite/application/muscle/app5.py,sha256=aNuZzvymFXK3h3Iy0A0W90K_poPs_5qVOaYmVwS5mCY,4637
26
27
  biotite/application/sra/__init__.py,sha256=GwfAKbOfTTYaLVdTwdkJxCMCY-SUd7WsN7BDAU2Xq7A,571
27
- biotite/application/sra/app.py,sha256=PIiBIy5wZfzcyDEh2N3oD9I_HwnCDWE4KJ7fy0VB_AY,16316
28
+ biotite/application/sra/app.py,sha256=usJZ5uZ0durKYIBF58KauxBkwBtvDAG-iX_I4IBCRgY,16021
28
29
  biotite/application/tantan/__init__.py,sha256=XivhGt3vpQ7EvRKdxT_jQNXIPnvVxAUXCnHYZkSuiHY,340
29
30
  biotite/application/tantan/app.py,sha256=nWE3rlDqf3-jfpIXUw1ddH4ooiD2lZ1GeqBvGXEXtsI,7637
30
31
  biotite/application/viennarna/__init__.py,sha256=HlvHvgsTdzTbq3e9luAmMP-4DbkiBqx5ru69swdz4ns,491
31
- biotite/application/viennarna/rnaalifold.py,sha256=sLFebN8_ThaC0r4tBPAsYWHrbSYAhwdr3D6QxSj3dlI,10918
32
+ biotite/application/viennarna/rnaalifold.py,sha256=16arcCP55XC8OXNLkSLPNrMrHuU7b5VLyz0xqO_MDhI,10993
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/util.py,sha256=rJizJjwn7yw2lfnz93sHNVle04WwpdfskhBkT6gWbsE,2711
34
+ biotite/application/viennarna/rnaplot.py,sha256=Y8-HLg27i9USuxKM2Xut2TFU8VR85Hd_eTEsMuDqRB4,6704
35
+ biotite/application/viennarna/util.py,sha256=lfssotSqZl4cO1ibgtgXgEFVzL9s1xMM-99wmuaD-wc,2712
35
36
  biotite/database/__init__.py,sha256=N3PuLKuEbQ0J55CddwryBGiLfYSazC697F8KnxizrKY,748
36
37
  biotite/database/error.py,sha256=L_FvDa-F4XUaCIVo6ZtLXIMn6P-cv783lvxR_Rtluqw,426
38
+ biotite/database/afdb/__init__.py,sha256=SMcUJ0mPNdc-bnnW3wlsw7sDyBwGfU-_2Z2Dt_nB6xo,345
39
+ biotite/database/afdb/download.py,sha256=GMyGuT5RHSWXdwA712_1yLWwloEBgJEWsbLTtVVs6vs,6558
37
40
  biotite/database/entrez/__init__.py,sha256=88kXhS1XqXb4exnfZIaKD98t3RH3gEZBiNR-aBhl-OE,403
38
41
  biotite/database/entrez/check.py,sha256=3JQZshjekA1woJll6UefEsUZ8kMw-MG1uh86jGgDomQ,1913
39
- biotite/database/entrez/dbnames.py,sha256=k3FbpMP5No8m0Gq_PR4TWZkzFFXHiNrQahXcXYAqCvo,2711
40
- biotite/database/entrez/download.py,sha256=qblZk-OZ3UQWTO4ECpyIVNCTUU12qSK9hvieSK1h-lM,7605
41
- biotite/database/entrez/key.py,sha256=sH-RU0oEDG-u5RaZyr506acSBpwAfeScE8HA34QZhR0,1156
42
- biotite/database/entrez/query.py,sha256=7jRFZ4aUXlMiACd5RXEBlQA718lg0_BWHPBKaaW0S0w,7636
42
+ biotite/database/entrez/dbnames.py,sha256=uQ5t5PCb1qrAmAdh8xWzO0WPWY3DybkW-JS4BRjQiR0,2873
43
+ biotite/database/entrez/download.py,sha256=x7GB9a8SGpofqLDezM8aiC2cMXCzOPjcfOymq1tOD7s,7661
44
+ biotite/database/entrez/key.py,sha256=O0XR87q51PNDXXvalyl0mZv7JvGip4QZwGrBcJb114I,1152
45
+ biotite/database/entrez/query.py,sha256=2YOolrsXreAapvOxdH-3EKkNsd5jqubou7Xl26rVOvg,7636
43
46
  biotite/database/pubchem/__init__.py,sha256=YvB4_HXgHto_Jw6PdsSNea-sFoh0HtEUWD7ByyxH2Xg,690
44
- biotite/database/pubchem/download.py,sha256=wzKlu9LhUcVVJ-tVmBF5sOPlKbopO55DnnBiG9pUpIA,10125
45
- biotite/database/pubchem/error.py,sha256=ebfAx3Q3-qlmhA4vRkPG9OD9MEKM0cSsTVUkHH7bx5c,733
46
- biotite/database/pubchem/query.py,sha256=dPONXpyWc3158KP_7DRxZ2JMEI5qjyoe3atIkcFQElE,27278
47
+ biotite/database/pubchem/download.py,sha256=oFIXjU_B6BpyzVvuFFZDdW4pPkLA06Tx1PsWF8TV1MQ,10128
48
+ biotite/database/pubchem/error.py,sha256=zQKHntwQDkcdm2ImKQgta2V45KeUaFfmM8tTaVwSMXo,908
49
+ biotite/database/pubchem/query.py,sha256=NJoFI-feTXivZfa6AoJGJDrYA6v_CEQSQjR5dDExvTM,26905
47
50
  biotite/database/pubchem/throttle.py,sha256=V4RzypMfh1IaBC8yZrH1l8W1k7v2KLpj1_fK94k-__w,3384
48
51
  biotite/database/rcsb/__init__.py,sha256=BKYOAhSIX1zb00wp_6bw30M7XGliu64B35Dm2Gf-A14,345
49
- biotite/database/rcsb/download.py,sha256=Orst9nfBrcDJhUyfj3aS8Tf11N9tdNSpwAoLUfWXgnE,5781
50
- biotite/database/rcsb/query.py,sha256=ygCFI2JguXbofOlAKKckhC5N_eLV-eXrwkbU2ck7-Eg,33866
52
+ biotite/database/rcsb/download.py,sha256=hknojHvR_pj6Q_zwuHEJbQudOZehRG0dBsHZzlQkTfk,5836
53
+ biotite/database/rcsb/query.py,sha256=Dvpp7nV4UwPH_3gVmIyHmvP4AsIHGQcgoZPUDkULG-4,33858
51
54
  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
55
+ biotite/database/uniprot/check.py,sha256=cVF0UfiUCT2nZ1jLWVfs1Ygghzx30ZXy1yj2vvASL1A,1418
56
+ biotite/database/uniprot/download.py,sha256=7hv050jxaeVQpmKiAEG_pRsyEtHbiTH-6Qc1VUsjBpk,4360
57
+ biotite/database/uniprot/query.py,sha256=qvwvCF8ae3WZLrT-GNt-DppKAnwdHQ-3XF8TJfZ9N6A,7810
58
+ biotite/interface/__init__.py,sha256=Mb4FPYW46Y6iduU8XVwWXUtgpsyVrk5gvM5xS2k1F40,736
59
+ biotite/interface/version.py,sha256=e-hm-dr8ju9T5eNQYpaoPYEIUCbCx0avR-CoHlZln4I,2435
60
+ biotite/interface/warning.py,sha256=3kwFPSEZMk8Q7yccD1Fsgu51gENA1ZbcsdNG_RBnrUM,596
61
+ biotite/interface/openmm/__init__.py,sha256=_sFCuVdsc3CaMAKq55OvnUYFETqYpOrqyVNbJb4nBTA,521
62
+ biotite/interface/openmm/state.py,sha256=DuoheeVwF8FqLQmer2mRJ_gRjnbIOkOsJGMfd6ARFdk,2816
63
+ biotite/interface/openmm/system.py,sha256=wIAlQQzJMfHJDSMIJ6CwScNgJ10DBFiBSLkR7BU4o3s,7245
64
+ biotite/interface/pymol/__init__.py,sha256=nu7HLGrp9DF-iOCbt1oMn8-TeOnOn2CipkwPAXCQACA,6766
65
+ biotite/interface/pymol/cgo.py,sha256=naAQ-5R2wpsbXy3UkjkFvGkzRx8xVr53qlGpltyRO8I,10205
66
+ biotite/interface/pymol/convert.py,sha256=mukBkBjGO0kv5Ec_ALG9i3BPYUCap1Zf1LiIJvBLrZw,6229
67
+ biotite/interface/pymol/display.py,sha256=R8vgVRoByPr_mkhm81fJdtzyZCMzRj8jyfviNPAfTLU,8725
68
+ biotite/interface/pymol/object.py,sha256=t_sT7lu1Vh_jC0uzzv7ydSf02jzeClT4tfiPN9fIMyY,45419
69
+ biotite/interface/pymol/shapes.py,sha256=w0_fBczmPtI3tQrmrwOp8owg6WUfhX3qXhKXibtfwBA,6244
70
+ biotite/interface/pymol/startup.py,sha256=vHdpd3RusQXJr9PSPbJxWbo8CuJSN4YpecNCM0az1Ak,4788
71
+ biotite/interface/rdkit/__init__.py,sha256=HWKhHJY0bCKlDDj3g-Ey7sjis0tsan6aC7b_l8qB0GA,466
72
+ biotite/interface/rdkit/mol.py,sha256=GH0iSrs54qNWSZbVjPw3T0hjJbTWkCFjTwpq8ef7XTI,20134
55
73
  biotite/sequence/__init__.py,sha256=fUoOYLTavBTicHu-JCQkvrCAyRfKRspfCItufOBDGGE,3507
56
- biotite/sequence/alphabet.py,sha256=PM_aKD5ivsU5Ral_z6SuKw6rX-wkB3CWOlZs_9VzMr4,17742
57
- biotite/sequence/annotation.py,sha256=Z-Q03m4EE32wAeaG7ov0BuoG4mH7Vr3EM59v_5qgwJ8,30343
74
+ biotite/sequence/alphabet.py,sha256=rI3KC_U05_gdLdXypGDicmJWvU2ruISMlCxr-NGPi0E,17782
75
+ biotite/sequence/annotation.py,sha256=XeVjiagSR5aVIRywAIl927Iwdgni4VKj7SyQJjP9Wkw,30541
58
76
  biotite/sequence/codec.pyx,sha256=JIKPODmlk7RGW1GIhoUSrbfS1XRJa6vbOb5ur-62jIc,5116
59
- biotite/sequence/codon.py,sha256=zPe7lKcdxM8IvBwF42IBWeaVufMFXbuwViaMBGHgWqs,16869
77
+ biotite/sequence/codon.py,sha256=zXGEitMgOomhems28nQtydwR3NH-3lxmCOYAGDKgITQ,16822
60
78
  biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
61
- biotite/sequence/profile.py,sha256=sEp5UYFykZwjge94xlVmCxJtFVE6LrrCfZ9hnABbjWg,17611
62
- biotite/sequence/search.py,sha256=J6ogMj58ft6bLGUw6IMckwG4nJonIojiICyAvv7mn7w,3207
63
- biotite/sequence/seqtypes.py,sha256=ACzLqjzrzE0PJSjv-GKDHaNHK_sQ4EHtug-vPl4r5qc,19938
64
- biotite/sequence/sequence.py,sha256=lRfkfK5r5awT8a4jqEZSn-z3Q1XjcS3BsqxTLBTKWXw,12067
65
- 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
79
+ biotite/sequence/profile.py,sha256=JiC0v8_MVvx9sLzVQxmY7qOGRq2uCV7ljRUEadzt78Y,19810
80
+ biotite/sequence/search.py,sha256=9REc8_sR_O67HjNmrNtGR1WxDlwSNcZ4ysrITrRCfUs,3205
81
+ biotite/sequence/seqtypes.py,sha256=szRx8sKaLOTq1Lp8qtg7Ru4dd_3SALl2zBqw0DFzy5s,23966
82
+ biotite/sequence/sequence.py,sha256=lWG4TjGLDjhBStQk-y3ECLjElch4korQ5BSAiGJ-X0Q,12064
83
+ biotite/sequence/align/__init__.py,sha256=ncVKWSjBtX6mjeikahsOXheqnlh9bT4mAzwkcMPYMWU,4910
84
+ biotite/sequence/align/alignment.py,sha256=YSQCSXaUJ-q78RP3NAAsBhQ04aDtWRZxdjKNJD7on3o,23082
85
+ biotite/sequence/align/banded.pyx,sha256=Td2d38XuNUzPK0X--Zo_GiogjdY2LntmvAA_ZhQhcwA,25951
68
86
  biotite/sequence/align/buckets.py,sha256=3QLzBDorc0ZYJv2SNuRn-mWmT3I2XljfCD1AoNV3ldw,2535
69
- biotite/sequence/align/cigar.py,sha256=DWkAlFL05b3Px0Bek9KNnU6UhvjkXxw7rCRsilREAKU,14710
70
- biotite/sequence/align/kmeralphabet.pyx,sha256=gNnkUJa1aEIhpxG_pPa6ChcG7PuW5ZJUM3RsnlSXoyw,18693
87
+ biotite/sequence/align/cigar.py,sha256=5Q7TU4jVsCsk1gbyVtwiX3ugvqN90WRGqhl0UCNteec,14760
88
+ biotite/sequence/align/kmeralphabet.pyx,sha256=CW2EymGklsnL_REWTdGx_r2pe0fNwdDmfjmSqf-IfiY,19231
71
89
  biotite/sequence/align/kmersimilarity.pyx,sha256=tmAKKZY2JOvnPjU0PQqInvb_MRo7whUxgX0iVZNWIbg,8665
72
- biotite/sequence/align/kmertable.pyx,sha256=IkmJgU-3e5qT3TTVfPXWc-Z7L8SqmWWUhwOqe4gOSD0,124735
73
- biotite/sequence/align/localgapped.pyx,sha256=523kib6BGDASd4AYZw4j0AMx7c_TfKr_gO-LTPL2Puo,34277
74
- biotite/sequence/align/localungapped.pyx,sha256=Uid8_OGa2yLrLeoblEF6VqUanqtvcAMgJHKWBfz9Ppw,9974
75
- biotite/sequence/align/matrix.py,sha256=Xwc6MKCsy7e9tcJn5pXkWs-5-lvvC_Nv8WIvzoJkqLA,13124
90
+ biotite/sequence/align/kmertable.pyx,sha256=NM0ja9hxigllGNu4_8lrnUwYRi58EUDoHTunwd2y4ZA,125108
91
+ biotite/sequence/align/localgapped.pyx,sha256=4rYWmMe_6fxmnAK-7mN3cV6dTy3xirWG4T65a7iayWk,33998
92
+ biotite/sequence/align/localungapped.pyx,sha256=2cRRgd4cbgClyzEV_PJJf5FUp8XqXjk4P0tAkbIuEKM,9938
93
+ biotite/sequence/align/matrix.py,sha256=IXh2nM_nmClLQ_qRiT1cQWGhFAJuPUDHzbzWVxcV6qY,22991
76
94
  biotite/sequence/align/multiple.pyx,sha256=J9MLWqzSvJN-1eWsjCPGlCdr51cSYkkiwyjyyE46qFo,22585
77
- biotite/sequence/align/pairwise.pyx,sha256=P8aiNasedIZPuTrNfUSkQK_6fK5msdCmvcXAVHnPgP0,23422
95
+ biotite/sequence/align/pairwise.pyx,sha256=ekSxD8zMK8lbSZGAxZAPe_bo339Me6ON4lTvzM-jn9I,23266
78
96
  biotite/sequence/align/permutation.pyx,sha256=G9quD4yyP_5BCgVkJE_Xf_9wovn1Bg_MXPtltopaUYw,10340
79
97
  biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
80
- biotite/sequence/align/selector.pyx,sha256=xVc2DyA4KHTunzulYaiS225Ghaw3Hm5_44hdSBxdNd4,34425
81
- biotite/sequence/align/statistics.py,sha256=aAB_RRl7wjUhqlHtRyfrw1XQ91WsZ45fHePnmsL17rQ,9919
98
+ biotite/sequence/align/selector.pyx,sha256=YQB2rASzwMa_7bAGV_mPa828MIvrVQMuVObCAlW4B34,34425
99
+ biotite/sequence/align/statistics.py,sha256=8Uv21eDMx17LC-2amUbgqbgS4lezcNdZiaiZ9y9EfFg,9916
82
100
  biotite/sequence/align/tracetable.pxd,sha256=JhxS9sl5wV6HD_cJMXaBt1zm_4_y5twsBs5buMVDYI0,2888
83
101
  biotite/sequence/align/tracetable.pyx,sha256=ReX5kId42RQqlMZmNRpzMmF3_9Z4laL8dXK88IiW-6c,15824
102
+ biotite/sequence/align/matrix_data/3Di.mat,sha256=-vJKsfx0GvUTWQLn6E4iQqAb17886onYD5277vE0DSc,2044
84
103
  biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
85
104
  biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
86
105
  biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
@@ -164,6 +183,8 @@ biotite/sequence/align/matrix_data/PAM60.mat,sha256=tEP5rtSKfgJt14UAQd1dhHO4BDBz
164
183
  biotite/sequence/align/matrix_data/PAM70.mat,sha256=hYpO31Doaim0281R8CSaLuN3ufFslxH4sho8ErMpqx4,2700
165
184
  biotite/sequence/align/matrix_data/PAM80.mat,sha256=Q6B4P1vT9zLD4zXWpuBUrRfPgmjTLTOcF_yMnKeDgWI,2700
166
185
  biotite/sequence/align/matrix_data/PAM90.mat,sha256=kB9YeLnQcIJwSRrIm3Ds961BH44ZTPVFjPZ2ZoJjhXQ,2700
186
+ biotite/sequence/align/matrix_data/PB.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
187
+ biotite/sequence/align/matrix_data/PB.mat,sha256=uzRYqr9cWWM9aJYyT7n2ZDWRcWLCXTJSj4UvDviB0zI,1711
167
188
  biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat,sha256=x9VzlyYY5EZ8xei0rnQ2ytuG6EGS-hUTxk7h1MSAyII,1875
168
189
  biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat,sha256=t2RTYBWH7pD2mr8OGH7KGu8DIs14TI3SDh_OF75YQyM,1875
169
190
  biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat,sha256=ppkCtdb5MiZFF4JNokg3X1gf1mDN4qGV0C_dCHcbsbs,1875
@@ -171,12 +192,13 @@ biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=E52mnslKgzhNeB6n3LNT
171
192
  biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=xABdTJkFD8zQKcmyvnt6jL3saEP0o9CF7EcP3KM9aU8,1875
172
193
  biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=FzdtLvS9xnAvNH_xCZ9P1ydCHCMaFeYC6VkqA844x5Y,1875
173
194
  biotite/sequence/graphics/__init__.py,sha256=nQMB_4upyPX-9_f6rThY9-KSRkGtBi_WRxMc92v2A6I,1185
174
- biotite/sequence/graphics/alignment.py,sha256=pgmbX8R2rHby3ZTq6ER7UZwGjrIPdEhVxSDKHn_TmoY,40645
175
- biotite/sequence/graphics/colorschemes.py,sha256=BO1Y9VnCTLBcN3XiL6G29oWt8T8D5KWuM8IegC-KOyU,4610
176
- biotite/sequence/graphics/dendrogram.py,sha256=txLxITGdxY_iUXwtcxqxMqK00GUR0MPIayVxdTqz2uM,7821
177
- biotite/sequence/graphics/features.py,sha256=L1RksYnwHy0bHYWNUyeso4krWLrYrxekj9zxp9bYpuQ,17839
178
- biotite/sequence/graphics/logo.py,sha256=EYaz9h9rSCUn2LLLKBsLon7BA2s1vRfsGdPOQLFoGto,3923
195
+ biotite/sequence/graphics/alignment.py,sha256=G4OTCmF48Z7qmqaSMGl_v4BmlDnB1y4os3B8BLd2Cts,40469
196
+ biotite/sequence/graphics/colorschemes.py,sha256=ISSJvX0c840TJEhnjH-Y57jo8LhHCuaU3DTFNu3nxWI,5687
197
+ biotite/sequence/graphics/dendrogram.py,sha256=GJ5Ic-C_RPolcsZqHmRJtAurIoVsPYkmcie2Tftcc4c,7901
198
+ biotite/sequence/graphics/features.py,sha256=5-6cRftSyVMed8bZ22Yh0nskXKrfa3psMuLXtvXT2aE,17841
199
+ biotite/sequence/graphics/logo.py,sha256=z_D7gzaVfROB-wTpDql4VJHb-iG5L2boOy6ScJ56piU,3794
179
200
  biotite/sequence/graphics/plasmid.py,sha256=9SZItKWdLSCdTbolBsWDPyVDb-75aYGtTsPKH_9ywio,26714
201
+ biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=O5CIZo3B4kA6ItoEAFCcCwvkFlz5-9GH4fRH-Hh6Ugc,964
180
202
  biotite/sequence/graphics/color_schemes/autumn.json,sha256=ykykAiaOGDBaBLXwtjqVBRYmce-8uK4NgtwHgnkLfio,893
181
203
  biotite/sequence/graphics/color_schemes/blossom.json,sha256=puHv-OkH37s_6kPSM_Uq6wnbnHdGu08Mdq-QxNu2fv0,894
182
204
  biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=54lrQvggpxSKGTy4n-yOvFrTwGxucJeo2ruzrghXfSk,259
@@ -190,7 +212,7 @@ biotite/sequence/graphics/color_schemes/jalview_prop_turn.json,sha256=Iw3f9dAmt9
190
212
  biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=EIjhkViMxbIE67_YUGTi-JYv55bLLGVr9Y5ah_J4cug,729
191
213
  biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=jzg12_f-7cmxtVKwgqNZCj1NxSKjKCUG2tZdc7ihvqA,728
192
214
  biotite/sequence/graphics/color_schemes/ocean.json,sha256=hfQeJFs90GA4q85Is6kE6NROqctuQY_N8TvfbD1FvAU,892
193
- biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=tFGmH2bKbT1NEtrpKDYVAfU7Qv1FYF6N86bt4FoudBI,702
215
+ biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=0OhKObhab7Oyj8ChVEGdOPz9FshhhPuakwUV5f5mS_4,716
194
216
  biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=Lw_My4qOSFPRCpiEJWZQU4kUvy30mXx_-YS_gcIWqiU,258
195
217
  biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=Ulm9UqjT_klqIz93g54qz5VxlKDJNSLi4ywpyElfCzU,782
196
218
  biotite/sequence/graphics/color_schemes/spring.json,sha256=Yw49LbAU_TFE_L_mt4wocoiVUHpZEMjrAZi2pWUuR5s,893
@@ -199,124 +221,132 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
199
221
  biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
200
222
  biotite/sequence/io/general.py,sha256=7JQBPcp0gVblaGUwYW05dYreyOG9J5LFUz-v6XGGX-k,6895
201
223
  biotite/sequence/io/fasta/__init__.py,sha256=6aXOhuGVn4FJoJMop3HedLQ6IRrZiuEOWCrC-sGtu28,742
202
- biotite/sequence/io/fasta/convert.py,sha256=aBD3anuhtaUNtIKQCFuz4X5WiCXVjD0MiD8R32qmOKI,9705
203
- biotite/sequence/io/fasta/file.py,sha256=yzyREJeOBIcfz20eWr1f5PDGsjeirA3mTj8ikL_bkvc,9320
224
+ biotite/sequence/io/fasta/convert.py,sha256=s0a2MCHVEAue5vuesCiEINjweBAZWoX4LF4QZDDttws,9689
225
+ biotite/sequence/io/fasta/file.py,sha256=fmVDi40n7lDmdwNFQl4FPccL3NDNMD8e9gG8g6ZNP1w,9317
204
226
  biotite/sequence/io/fastq/__init__.py,sha256=p3dmgI_ytFxai_tdrqpRhkTUzBkQMM5J2cNQ1p9-JXI,607
205
227
  biotite/sequence/io/fastq/convert.py,sha256=BKZ3_wHFeynAfDLNKDctI2Amfl5-F0wNyV6qv_uctMs,3749
206
- biotite/sequence/io/fastq/file.py,sha256=MVuaOL7pHk1NAOdRtOSDSONfIe8ovknZ-b3uBXDF870,18323
228
+ biotite/sequence/io/fastq/file.py,sha256=Ub_a3jhtjnHztN35_eAK7KQpM2xaG4vtZKam5JAx5gI,18324
207
229
  biotite/sequence/io/genbank/__init__.py,sha256=DVTqOI2ilzlo2O-IyfUv-7WxsxVIBPPtoEjZ1MNV3Pk,490
208
230
  biotite/sequence/io/genbank/annotation.py,sha256=J8_DODOqNcPvj_le5md3-9nttlNV3ViXCNtGAdNtSBk,9700
209
- biotite/sequence/io/genbank/file.py,sha256=BbefCk8q9XQafbpqY1kKgN4_XYQ4Jlofq9sNnnYAdb0,20939
231
+ biotite/sequence/io/genbank/file.py,sha256=lT3S853nNLUUlxQdkvvNADJa-wJ_5QIgHYZmSF6f0BM,20927
210
232
  biotite/sequence/io/genbank/metadata.py,sha256=bF3fttJMmFa6eELvQ9UqzFVSgGkVUqLfVsgiLz01LBA,9687
211
- biotite/sequence/io/genbank/sequence.py,sha256=81q3memdbZkI63ljhDLGEkJtKrpfpRzflGb_WcDNbns,5590
233
+ biotite/sequence/io/genbank/sequence.py,sha256=_y-IcIad0EYUYovy9hcCt8DzKfoboxBPJXE5Nhw72yA,5677
212
234
  biotite/sequence/io/gff/__init__.py,sha256=-m--LdBhi8sDWD0mbjxoxU_hRPSeJ7APYCYFKkpb448,949
213
- biotite/sequence/io/gff/convert.py,sha256=ojfSlrFuQZB1EEeZ2iK6duOSCQQtOU2glvsA4qkqXFg,4742
214
- biotite/sequence/io/gff/file.py,sha256=BspHz4_hUrY88qlBml5glkymoX6_RKv16kh5BUI3Xys,16546
235
+ biotite/sequence/io/gff/convert.py,sha256=obgIoTAh5a0SCaS4HRfjGUY7X0dXd6LG-P7hRIBeZ5Q,4739
236
+ biotite/sequence/io/gff/file.py,sha256=ilxgm-3_QndGCQThjSTuyk4mNsUhPZlD_SPvWnqrDmE,16525
215
237
  biotite/sequence/phylo/__init__.py,sha256=aNP1B9DNNTXMyiqWkzF6JZFynlcmIg-bDeN-eDKakgQ,1297
216
238
  biotite/sequence/phylo/nj.pyx,sha256=YOseJP7fKCnqhh8w3mK1z3fw6cKF5sU5oRkb1D3X9vI,7501
217
239
  biotite/sequence/phylo/tree.pyx,sha256=kmT2kO9cH3svQOxsyuPLfbUsWnTNdfVrx5xaxcmTC3I,40374
218
240
  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
221
- biotite/structure/basepairs.py,sha256=eZF67fnecHkvDYnIlfeejdJC7sCDWYqOghjbweLoxFE,51163
222
- biotite/structure/bonds.pyx,sha256=hR_vTYigOv06EdV9TnxdGFSM6WdZrCAV6w9coquSFWg,69917
223
- biotite/structure/box.py,sha256=zp80_Q4Xv5t2KIfrSK-SachkIbbK1mctl91mVrk5T3A,19186
224
- biotite/structure/celllist.pyx,sha256=gGv_j-jVdoC6K-8Dw38Tc5Xq_KbEdFO5ZnvHZl__htA,35310
225
- biotite/structure/chains.py,sha256=GjacD8hgSZemI7Bs8Y8zHpPy8I-iGUOoUSYpJ5cLuJY,9141
241
+ biotite/structure/__init__.py,sha256=nTlutppQQCPYYPH0MXB104--L70rOPUj6P8CcRDyUKA,5623
242
+ biotite/structure/atoms.py,sha256=x6SnfqCTZIWWReEh62YDUTF3sPjjJKkldDYqu2XigDk,52406
243
+ biotite/structure/basepairs.py,sha256=-Jvzj9rOxy0ojTF0EEFtQRbS1S9hdg0Rc-xwY1Nhi2M,51417
244
+ biotite/structure/bonds.pyx,sha256=mFJxrbNtGDHQWdSD5KwEJgGsIsfZBo8B18C4DvknYvo,71734
245
+ biotite/structure/box.py,sha256=sBljPGIoBg27PHb2v1r6lsEfJejTmieOI6zAbKt6Fog,19336
246
+ biotite/structure/celllist.pyx,sha256=7U5gEO99xp0pd07ZeMtlY77j_5wU-9e9la0tIR8wB1k,35453
247
+ biotite/structure/chains.py,sha256=ybGE1OaLH3eEe9VwKmVfa5tF0UMtmma0dh8yQjxz2S4,8766
226
248
  biotite/structure/charges.pyx,sha256=ZqQeMaSr0kjgBWRN_mYWBXV6wYtglADRrvY4ZQ0KKSU,19341
227
- biotite/structure/compare.py,sha256=jf4L3xuPz_ZBNhdMHpxNaEu27qVgy5z1mXRz-dfoyFc,9711
228
- biotite/structure/density.py,sha256=jlWog4xJcaHRvtMiLQueeJJwzIH3ZnRiZSb-ZCDq9B8,4305
229
- biotite/structure/dotbracket.py,sha256=MjJf6x67jME_tdFhKGhQtGUpwsgJkHKjmNL77bpxG7c,7048
249
+ biotite/structure/compare.py,sha256=h6v6pAVxLiDKzeEbFltI9OuLtVBNVCAmFU7m8whFcKE,28034
250
+ biotite/structure/density.py,sha256=bCRVos_1LF2Uqq8fmVnZNhRUdDupdTXgPem-bkca24s,4306
251
+ biotite/structure/dotbracket.py,sha256=tzSvOB9mWErIIg9dcXY9wz-gha6MxQ_zESyPm18fmRg,7475
230
252
  biotite/structure/error.py,sha256=NaQBi7CGUYpa7-Y9t0We8iVEJwqpsNWLXkr1PTBKlxQ,822
231
- biotite/structure/filter.py,sha256=e3xLwZobrhRJ-7uX4HeerstE5sC8b7RpIJ_mg9TTPEM,18557
232
- biotite/structure/geometry.py,sha256=1myUT4HVwMzcz6e_CA2yf6BOKPx5ZFK4xCykA_wLHm0,25766
233
- biotite/structure/hbond.py,sha256=7eULKwg94uQY2G-3ea8M0yOOHi0-tl_2TV-Ia2lzLhI,15646
234
- biotite/structure/integrity.py,sha256=ubkv2vA5yhb-3GIsX4ZHsAGiB-zQ30Pr_hUlpWHJcHw,7041
235
- biotite/structure/mechanics.py,sha256=fjNrK0BDTyKDgnxK-hMG2P8uTnqSZWSFrZi6s0RBEeo,2661
236
- biotite/structure/molecules.py,sha256=sFXmT-i-nJPjMLI_YUr9-xESzDu8QRC_jfFkEtp_2zw,15856
237
- biotite/structure/pseudoknots.py,sha256=29mW6yDiJ4_NYMH9sFWZEN7gfWHYmQpvOkXuG5DD5uk,22852
253
+ biotite/structure/filter.py,sha256=Iw5G6Qa53D6ZA-XH0fLY-vosl6AZHMJtmIvs4hcHc94,18585
254
+ biotite/structure/geometry.py,sha256=vAMYYyTU-wrhx5twVYLrtan0UEdLmG-C-opuTZjhHjM,24331
255
+ biotite/structure/hbond.py,sha256=0DoqTzLHq529OOViZIhIAl0OiEHCDVJyTmCDa3ZKRQA,15645
256
+ biotite/structure/integrity.py,sha256=v1lJrEcvH_bdV0-5ToIKBPWKV5Mq-TDSlSFZgRjn614,6976
257
+ biotite/structure/mechanics.py,sha256=hg1wre3uPAuXfyZ976mryvd0_Db1UE-iTLE9qjfwijw,2659
258
+ biotite/structure/molecules.py,sha256=VdfD4w5cbbT4_qQdNHYgIjqwQSvaS-SbfNE5ytNCBqI,15628
259
+ biotite/structure/pseudoknots.py,sha256=OXofcx8-ePheFQ5du9ZGKRxEAzZAco01nw7X70_Yk3c,22789
238
260
  biotite/structure/rdf.py,sha256=XAkbnbfk0wx_cIlrDYXBMUzzShgICUCpyPPfTNviWBQ,8349
239
- biotite/structure/repair.py,sha256=wAxye1HguqSqhELWEpuxIkaTkv3ZswDXTOhkEZhdchc,7300
240
- biotite/structure/residues.py,sha256=iuVK2pVfU8qRCf7kmCbO8lfH4O4PfrECmbOjCk3B2sU,23026
241
- biotite/structure/sasa.pyx,sha256=4G_5jJGRsUenLtVPr9mD9KlbYfmP4WnDY_iHXjJE_pw,13305
242
- biotite/structure/segments.py,sha256=7qTacvlpheHHo_WgHcSIN_aZ-FN97ksGuNwwS_cC9xw,5725
243
- biotite/structure/sequence.py,sha256=Hpt5FvDJG1tBY0eQJNri-DboeZ3BoADy9I_MzWlzOq8,4357
244
- biotite/structure/sse.py,sha256=w_ww5JwImQKDlLQiaDZLEr49viP7WZyYg_p5n59Eguw,11714
245
- biotite/structure/superimpose.py,sha256=37elE1zeY7cAAnF77B6zerQDqtnHZanpqjB_xcWlDSk,25813
246
- biotite/structure/transform.py,sha256=7yuzqo0y4fVDOIYk_fhOuaeBIzPAL9HyMqYn4r9JJxQ,20179
247
- biotite/structure/util.py,sha256=C5nrQ6la_MMT8-dURLDnylvMnpYaAb-1WvTJcsyzkAc,2296
261
+ biotite/structure/repair.py,sha256=MqWQTIOH67giGQ-_yRFARa0uqNFRHHOb-PwSBkdzUL4,7298
262
+ biotite/structure/residues.py,sha256=hiCCLRmowlAm6C24f7gwvhVoZLSzD_z8DKxuwPD30bQ,22898
263
+ biotite/structure/rings.py,sha256=ei1suKE53QGP5XvEPeO8tDGvbYkkI5f6Mn-Hi0rmOcw,11781
264
+ biotite/structure/sasa.pyx,sha256=L3cpqVZBG8RbtP-JLn9R39FszvnomwozvSf6ReAiy1o,13432
265
+ biotite/structure/segments.py,sha256=crDed1Lv4DaCOETw8qM75LXfjLVTCtlBKKRiFdCcobY,7833
266
+ biotite/structure/sequence.py,sha256=RFayTEC85_ETGq0mQVX0gy3tZU6-dTQStyReVzauTqU,4355
267
+ biotite/structure/sse.py,sha256=Th5LBvwV6x94d1vbBdxFnKGBqaPxDkTit9qNgeFBC78,11710
268
+ biotite/structure/superimpose.py,sha256=8XfPyHfbU943lB4YcBZ9ZRWGXj_8ZQTc52jGQz8WcjQ,26598
269
+ biotite/structure/tm.py,sha256=dzLLD3GYPFsVgXgND8-fZT2Y3pp0FDA6S_Z8QJUr9S0,21548
270
+ biotite/structure/transform.py,sha256=NHY9enchMmEvnJzRp-CUqgWFmYMXjwda3zdniMRoQnI,20200
271
+ biotite/structure/util.py,sha256=7X_h7YYzwXLYc2XjFR-BQPAosNCqdZnxbbfonyO-NGA,5127
272
+ biotite/structure/alphabet/__init__.py,sha256=UxJZ1_WsI1SPs89ZGv4Xmr-n0pWwlQcBBglfJEXzanY,953
273
+ biotite/structure/alphabet/encoder.py,sha256=OMQXiMo6xnhIsWoCZ2xKvGpV28k24lM8LhL9cZDDFNE,11715
274
+ biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
275
+ biotite/structure/alphabet/i3d.py,sha256=eq74BA_GWU3A0jC0hjPSsI1AELuOPKpoWXtmDbaoEH4,3118
276
+ biotite/structure/alphabet/layers.py,sha256=aOevc3a-kL65MfcFsauXt7YBAfMd5V8y5Ch534EvgEc,2173
277
+ biotite/structure/alphabet/pb.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
278
+ biotite/structure/alphabet/pb.py,sha256=n9EyAgWLZ055CMFhQwc_t1xvG4KJ6lTMGwh_3H1UNvk,6164
279
+ biotite/structure/alphabet/unkerasify.py,sha256=YjuM8molBvuhfhGAAF5L-zo8agC2S3WLTDWMdARn_7Y,3429
248
280
  biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
249
281
  biotite/structure/graphics/atoms.py,sha256=acZXrWVRblk83FfLePe3pHoMcjJJH2eEDyZFmqmw-xs,8359
250
282
  biotite/structure/graphics/rna.py,sha256=7PSX9JHfo1840k8HqKcC8UXX-rxP8YwFtN_VLgUilbE,12311
251
- biotite/structure/info/__init__.py,sha256=Sp3hhSL45bNtaoAMue1CuHwOcC8D39zMzuCispcrNLA,702
283
+ biotite/structure/info/__init__.py,sha256=D1ure7j8lAfbLGqQricxHLuiDHf0FLzV_p4m5rd0dPQ,722
252
284
  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
259
- 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
285
+ biotite/structure/info/atoms.py,sha256=rBmzMqUffYmKuQVVHFEz-SaaFSrsRSLFoMwa8dzYYZg,3100
286
+ biotite/structure/info/bonds.py,sha256=7qp4EYo61x6j7OK9Eyolh7Pmg4PU8Rodr5_KfmnyzP8,4793
287
+ biotite/structure/info/ccd.py,sha256=o0Jb7YYJbYpyljfNGiqXF6bXP7IUlCY3cRMQj1EyWvg,6051
288
+ biotite/structure/info/components.bcif,sha256=ClKq5vYpizeAB7JSaz-ZnZ_rby7mVVn3MS5bv8muoqU,59077222
289
+ biotite/structure/info/groups.py,sha256=0NTOaFgvqf-yWTMNiZguVx6i0sVWXB-AhnPyhuRcK5o,3312
290
+ biotite/structure/info/masses.py,sha256=s8heq0bG33-6NTeRqA2WpoOqUy-mwQTfM5a7CWA0YE0,4676
291
+ biotite/structure/info/misc.py,sha256=_-TSbBsZ70fv3Kcwa-28LTOOZpLJZkHE23XjvysLdF4,3565
292
+ biotite/structure/info/radii.py,sha256=w7pL9KyLve2Z735m22Xpw2AuVm8Sg1wiU7IuE3feJYg,7548
293
+ biotite/structure/info/standardize.py,sha256=fI-iDut7qu8NC2Vcl-ldsfFxJMpuCZ9Uo30R8PL25mU,7924
266
294
  biotite/structure/io/__init__.py,sha256=d9zsCIGeTRQ_R8n5xBwi5jrfanRMEeCIh9E9xjmnqVQ,1027
267
- biotite/structure/io/general.py,sha256=uZPbBq35Mp4TuqxAEMWFhUztvolzUzAxSKXXdMI6Pb8,8691
268
- biotite/structure/io/trajfile.py,sha256=XnLmQ7AvD9mIbSclgQqAev069qqCL0hBRBG6mXtUO8k,25877
295
+ biotite/structure/io/general.py,sha256=CtI0dDoHCDBXoh7FDS5isKM6AMicVBjNAlmcgu0bdN0,8695
296
+ biotite/structure/io/trajfile.py,sha256=kyWUz_45rX2sBqk6Ya3EolqMmu_qqsIqK2uwhwCusfQ,26093
297
+ biotite/structure/io/util.py,sha256=4VpPAjT0Lup3Q8DHN-Da3E9z5kJXxqmfGbfGO8AFytw,1054
269
298
  biotite/structure/io/dcd/__init__.py,sha256=oy8P1khM60o8M5grpSoGNZkudTBrTUPF33xuLub5sNQ,401
270
299
  biotite/structure/io/dcd/file.py,sha256=zLvngfNmF8pBM6J6kw-i_-rtFiJj1Bh4HSCAmN0EegI,2291
271
300
  biotite/structure/io/gro/__init__.py,sha256=jPh0RWv2vbpmgB0U0lZ6yo7SkVZycYfx2UQqKWCkOHg,422
272
- biotite/structure/io/gro/file.py,sha256=DlRBWIMl8VEA4kW1HS_Z73DayBfMzWZ5DV8-IIeA7C8,13076
301
+ biotite/structure/io/gro/file.py,sha256=sF1sEWg7l9AXOA9HrW0sZo6tg_I1bT-K_RSBFiU67Mw,13083
273
302
  biotite/structure/io/mol/__init__.py,sha256=s1_xplK-Grhil2LLZiNiLU39wLvYr0LB1Vrn66BOmrU,602
274
- biotite/structure/io/mol/convert.py,sha256=_jGauQH97v_RJi9wHqiKdRusSTw2KN1R4kbkmyhiNFM,3901
275
- biotite/structure/io/mol/ctab.py,sha256=xHhXPLnoVAl06_FQetwCYRXewmQiJjolk2pwjiD8acs,13885
303
+ biotite/structure/io/mol/convert.py,sha256=grUcNFPaWd_kyJYrb2ozzbIzvNMMxyzk4ze2MLsL4zg,3901
304
+ biotite/structure/io/mol/ctab.py,sha256=A_qycDLi_pMLR1qjLfBNr-rAlUJT-Klv53ap7JSNUOI,14540
276
305
  biotite/structure/io/mol/header.py,sha256=Ee78HGDy6DHQEaOh2AGyG0gQGsoMfqLPnfoCo0CwsyY,3545
277
- biotite/structure/io/mol/mol.py,sha256=cY0wBIboaC-o-Mr270pJv-gSErAikFXZJhYpNYyBSoE,5610
278
- biotite/structure/io/mol/sdf.py,sha256=kERmWpbzjnkPafWHU1PZI2zGk-GT3aWdJ_5TbaTeOI8,33158
306
+ biotite/structure/io/mol/mol.py,sha256=Uc4gHxrVTzzRns7gou6cPQSlDeQDPUKlf1z_xvsXarU,5610
307
+ biotite/structure/io/mol/sdf.py,sha256=yV0ROsMsMAN0Y6rgLSri4KVsHwxoBrln4ANldqihMek,33915
279
308
  biotite/structure/io/netcdf/__init__.py,sha256=BVUimn1EklpgdoCFE5sC-H4E47exDe_xIviMeGnn_tk,363
280
309
  biotite/structure/io/netcdf/file.py,sha256=8jht6qCgw0Q7q1-WaQ1iCBjc1QLzjrwpppe3uBZhZ1Y,2256
281
310
  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
311
+ biotite/structure/io/pdb/convert.py,sha256=AP4PPNvZ_SMjH1afal8jGzMGYyim_wTZNLbG9gOBNlo,11026
312
+ biotite/structure/io/pdb/file.py,sha256=V3I1kH2dFj9uiOjCxcnan5wAStGw_vLt5xFWNJziwg8,51633
284
313
  biotite/structure/io/pdb/hybrid36.pyx,sha256=-feGX_k9H7uAfbqmy37PvlWbuij-mknpbCR2ot1l4kk,8277
285
314
  biotite/structure/io/pdbqt/__init__.py,sha256=JiBnbhNHevtmVIwEeYBubOzK5xu1d9dSny7Zf3Aas74,456
286
315
  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
316
+ biotite/structure/io/pdbqt/file.py,sha256=Jl4DiewnIGd9UeVruhTxkZaclIW94aYpMDBHB37PVtc,27326
317
+ biotite/structure/io/pdbx/__init__.py,sha256=0G68Qdc29KdXt0R9di2uBv4r173kuXXqGCbMtDdth0E,740
318
+ biotite/structure/io/pdbx/bcif.py,sha256=cpl55pbDDlQKWZDkTZsgMDZKWv303AvedV3-n5Y05OA,21808
319
+ biotite/structure/io/pdbx/cif.py,sha256=7jaC3DueZ0m738nFGYfkMkseXDiMhiBKWF0Gx_fk6AI,35956
320
+ biotite/structure/io/pdbx/component.py,sha256=MiVzeqTI9FHl8hbbpQkOGmlHyhtmwW4V18nQVcL-Quk,8649
321
+ biotite/structure/io/pdbx/compress.py,sha256=Nc42bjK3xsTrDksD3ozkGSGwFi3tUEIPpqA2ax3qNok,12121
322
+ biotite/structure/io/pdbx/convert.py,sha256=AJAmvC8WQIxtuoA9nNiBVz_SraGpYKGFgHmXEyPkXcU,75328
323
+ biotite/structure/io/pdbx/encoding.pyx,sha256=Ckb9r27HTKLrxRE93Bf-im0mu5R9tuCTh_-2o4NwMWc,32214
294
324
  biotite/structure/io/trr/__init__.py,sha256=xp4FpuAy_ESqzVWyugRXUHZ0iF8j5ox6EfCxSWhkcUY,372
295
325
  biotite/structure/io/trr/file.py,sha256=XcdYOf9M2tjRXMM87p9U7jMdQb0PlTFvDHXHgSdjbl8,1278
296
326
  biotite/structure/io/xtc/__init__.py,sha256=P17UBQnG-KmOlScHp46FXAb5i7d-ZCMlyljcOkFolMw,370
297
327
  biotite/structure/io/xtc/file.py,sha256=X4iIDjAWn1ZySg3NjbPeSMNByoyH1y8asmtqcBYycpE,1278
298
- biotite/sequence/codec.cp311-win_amd64.pyd,sha256=iWwU7xgh7pIDvVZlBdxugJN_IbQQjypWqyZLYNfh08U,248320
299
- biotite/structure/bonds.cp311-win_amd64.pyd,sha256=U0dSr3wexSHpDisrmRmwl1xIUET7-D1pB1gPpEDeG3g,486912
300
- biotite/structure/celllist.cp311-win_amd64.pyd,sha256=rXmOyfuYkhARHEDKZH60-3jth_fcvUBRi1ijWuJW4w0,257024
301
- biotite/structure/charges.cp311-win_amd64.pyd,sha256=TIQ8qUocTSKiV3Dhqr8_VBLqP0mtxo18Igwjw-eB3mQ,223744
302
- biotite/structure/sasa.cp311-win_amd64.pyd,sha256=6-yqw-zbzNJ7DVernf3MKhZGgqViD66XucYahNeJPlc,193536
303
- biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=ekbw2BkBWtMhPqgKZpbVSDiy25LOb46NIzEaQfIdqYU,499200
304
- biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=8tCuS2CgrPai7B-7g9_EYVY8LxIdQamxmcT_jAyJuyI,316928
305
- biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=UnUCT1UCvqLnJJRucAO0kjzAetCxG_4A9TEBwdaxoDI,176128
306
- biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=XBONRa382xLhd4HmXrE-CSoJlYgXNsf2_jxU7unQ5tU,607232
307
- biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=H0EHdNxRC6ax7TW8AKUOgL7Q5xWkt874PJOSmAQnhqo,996864
308
- biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=r7P7VnvpPkwNPsV_MHrLFT_8j8J_ACrh0lMSTPXAp1A,262144
309
- biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=b9d0rp5wU6pTqbQ6l2XYG0F-dyP1SNtX8QdYBTclQh4,415744
310
- biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=VawKPXwPMoAxxkfDPxkYEmT42rUnHi9KaLKu02_Uf0U,542208
311
- biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=1N4Ln9JePU6zjU5ReEpI2TPAvxwLHKoiUr0tAG6zdN0,186368
312
- biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=S60DvwtPkO-HzHzA4PkJZ7a9peGJ1oLpiW8FIEo9Cis,258048
313
- biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=DqBNBfeavDadFJOPhCEn7Cz9f1lz5FeFQs5qBSX1xRo,152064
314
- biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=6tn1hRP96jG-hCaZC9edW0r2vX1BeXJgZ6h21yPi67Q,172544
315
- biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=revuET-_BKApcz-cXH-nPNSSnGPUY15TwdvXHpLMYWw,210432
316
- biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=x5s7-dTAzIm6o9IdFXPJOEmPGDaE04-TaTXCpgEIOf8,165376
317
- biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=E11zaTT9tGMxYHY9YWKSXwusIesUmpicKAZ-2FTxdLI,153088
318
- biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=dlaT6o91WMbDaX10SaG0kg51YZib6MGkhB-Gfu15W6A,1005568
319
- biotite-1.0.1.dist-info/METADATA,sha256=lnwl1IjHDLJ5EVhHYSUQplx3-4Ql4gbbezrkspTCRK8,7159
320
- biotite-1.0.1.dist-info/WHEEL,sha256=tUtJ5bXThObXzu3Mmtrhn2LpWmyDlL72mq7DuHq3018,97
321
- biotite-1.0.1.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
322
- biotite-1.0.1.dist-info/RECORD,,
328
+ biotite/sequence/codec.cp311-win_amd64.pyd,sha256=IZUjyUOoIPn2c-TTlw66grlJzBdyxdnHgYSryy-q_HE,247296
329
+ biotite/structure/bonds.cp311-win_amd64.pyd,sha256=av2Ba2KCW1LNzk52qB1b0w7Ygd8DsmT4OU-Xao6puzg,490496
330
+ biotite/structure/celllist.cp311-win_amd64.pyd,sha256=L_Y_4ye5ntQk5zlTktLy1ATuyA7uOsm9xBNbsWTkHPU,260608
331
+ biotite/structure/charges.cp311-win_amd64.pyd,sha256=mZ0PQCO2aBGMenlukQRo46rEMZzbJwtzCdTjrwvT2yo,217088
332
+ biotite/structure/sasa.cp311-win_amd64.pyd,sha256=_WicgYCYilXq7q0Wb7_YBYgPhhDuaUSXGenQY1oUt6w,194048
333
+ biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=snmAD7iXhTzVJeoubB9Q4Azk6Q0EeVGM1U09kk5wGoc,497152
334
+ biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=4EorpaYvTptdbSBy0AWhe_rf_ruTppjIA2EhlRaPwXE,335872
335
+ biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=gqABm-jUKCpy_jhFGDqsODTK3PLXdejLnaClaBnqOZg,175616
336
+ biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=gIH1KfW-65Ck0s6x4YhDj_Ipa01nKkS0tfu3B43LcUI,603648
337
+ biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=T0pLz4up-ojaVC__Cs1boWUJROA23jDlvnE5OQGm6jM,992768
338
+ biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=LqtbVpAIQChxjO1xu24lwir0H0730-QVgsvMqTeyy5k,261632
339
+ biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=Y25EqPmKYWG2K4VPbeCZL7o27yI-M3_TsAipK05E7WY,415232
340
+ biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=FaFLMNfJsQ2CSSrR0H1J7c5miVNMXlgZsTB6ZNKakQQ,537088
341
+ biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=tWaJoeVzyN-4x2LvjXkscz7a-s0ezS8V56pjy3WiLps,186368
342
+ biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=N_o2WN7VPoXNPS4Bn98LGIHz0ayAp8RiM_oZS3imyTg,258048
343
+ biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=ebMvXFS6w8v3a5_fPUZWfigOEkzENiM9u6ioCwlxBqM,152064
344
+ biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=ZTJkMnRsCnM4T5y3MMW5Hbk2HiHFWqhPtchWJClVqGo,172544
345
+ biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=lrvbc833oTdU_LqXzqzvZrR0sOK5Emvh5bQXJz7xrRQ,211456
346
+ biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=hZ3_NAFHz3TOCbTCi5kHmd6JXq4N0gvkD9YAhTub7yY,165376
347
+ biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=Bm0p0RgDD0Fnh5oaSztu6mJi51hI-twWVdgYm6UovK4,153088
348
+ biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=JtYIHWPqK2hy-Wg8lROn2zs0ZeLJNf_1vKdBCTB6JE8,1009664
349
+ biotite-1.2.0.dist-info/METADATA,sha256=mwg-xyNoWLydJEG7E-KM3V1J3LOto8ZVlu4SZpEp1VA,7318
350
+ biotite-1.2.0.dist-info/WHEEL,sha256=tUtJ5bXThObXzu3Mmtrhn2LpWmyDlL72mq7DuHq3018,97
351
+ biotite-1.2.0.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
352
+ biotite-1.2.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``.