biotite 1.1.0__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 (155) 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/localapp.py +2 -2
  6. biotite/application/msaapp.py +10 -10
  7. biotite/application/muscle/app3.py +3 -3
  8. biotite/application/muscle/app5.py +3 -3
  9. biotite/application/sra/app.py +0 -5
  10. biotite/application/util.py +21 -1
  11. biotite/application/viennarna/rnaalifold.py +8 -8
  12. biotite/application/viennarna/rnaplot.py +3 -1
  13. biotite/application/viennarna/util.py +1 -1
  14. biotite/application/webapp.py +1 -1
  15. biotite/database/afdb/__init__.py +12 -0
  16. biotite/database/afdb/download.py +191 -0
  17. biotite/database/entrez/dbnames.py +10 -0
  18. biotite/database/entrez/download.py +9 -10
  19. biotite/database/entrez/key.py +1 -1
  20. biotite/database/entrez/query.py +5 -4
  21. biotite/database/pubchem/download.py +6 -6
  22. biotite/database/pubchem/error.py +10 -0
  23. biotite/database/pubchem/query.py +12 -23
  24. biotite/database/rcsb/download.py +3 -2
  25. biotite/database/rcsb/query.py +2 -3
  26. biotite/database/uniprot/check.py +2 -2
  27. biotite/database/uniprot/download.py +2 -5
  28. biotite/database/uniprot/query.py +3 -4
  29. biotite/file.py +14 -2
  30. biotite/interface/__init__.py +19 -0
  31. biotite/interface/openmm/__init__.py +16 -0
  32. biotite/interface/openmm/state.py +93 -0
  33. biotite/interface/openmm/system.py +227 -0
  34. biotite/interface/pymol/__init__.py +198 -0
  35. biotite/interface/pymol/cgo.py +346 -0
  36. biotite/interface/pymol/convert.py +185 -0
  37. biotite/interface/pymol/display.py +267 -0
  38. biotite/interface/pymol/object.py +1226 -0
  39. biotite/interface/pymol/shapes.py +178 -0
  40. biotite/interface/pymol/startup.py +169 -0
  41. biotite/interface/rdkit/__init__.py +15 -0
  42. biotite/interface/rdkit/mol.py +490 -0
  43. biotite/interface/version.py +71 -0
  44. biotite/interface/warning.py +19 -0
  45. biotite/sequence/align/__init__.py +0 -4
  46. biotite/sequence/align/alignment.py +33 -11
  47. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  48. biotite/sequence/align/banded.pyx +21 -21
  49. biotite/sequence/align/cigar.py +2 -2
  50. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  51. biotite/sequence/align/kmeralphabet.pyx +2 -2
  52. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  53. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  54. biotite/sequence/align/kmertable.pyx +6 -6
  55. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  56. biotite/sequence/align/localgapped.pyx +47 -47
  57. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  58. biotite/sequence/align/localungapped.pyx +10 -10
  59. biotite/sequence/align/matrix.py +12 -3
  60. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  61. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  62. biotite/sequence/align/pairwise.pyx +35 -35
  63. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  64. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  65. biotite/sequence/align/selector.pyx +2 -2
  66. biotite/sequence/align/statistics.py +1 -1
  67. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  68. biotite/sequence/alphabet.py +2 -2
  69. biotite/sequence/annotation.py +19 -13
  70. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  71. biotite/sequence/codon.py +1 -2
  72. biotite/sequence/graphics/alignment.py +25 -39
  73. biotite/sequence/graphics/dendrogram.py +4 -2
  74. biotite/sequence/graphics/features.py +2 -2
  75. biotite/sequence/graphics/logo.py +10 -12
  76. biotite/sequence/io/fasta/convert.py +1 -2
  77. biotite/sequence/io/fasta/file.py +1 -1
  78. biotite/sequence/io/fastq/file.py +3 -3
  79. biotite/sequence/io/genbank/file.py +3 -3
  80. biotite/sequence/io/genbank/sequence.py +2 -0
  81. biotite/sequence/io/gff/convert.py +1 -1
  82. biotite/sequence/io/gff/file.py +1 -2
  83. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  84. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  85. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  86. biotite/sequence/profile.py +19 -25
  87. biotite/sequence/search.py +0 -1
  88. biotite/sequence/seqtypes.py +12 -5
  89. biotite/sequence/sequence.py +1 -2
  90. biotite/structure/__init__.py +2 -0
  91. biotite/structure/alphabet/i3d.py +1 -2
  92. biotite/structure/alphabet/pb.py +1 -2
  93. biotite/structure/alphabet/unkerasify.py +8 -2
  94. biotite/structure/atoms.py +35 -27
  95. biotite/structure/basepairs.py +26 -26
  96. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  97. biotite/structure/bonds.pyx +8 -5
  98. biotite/structure/box.py +19 -21
  99. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  100. biotite/structure/celllist.pyx +83 -67
  101. biotite/structure/chains.py +5 -37
  102. biotite/structure/charges.cp311-win_amd64.pyd +0 -0
  103. biotite/structure/compare.py +420 -13
  104. biotite/structure/density.py +1 -1
  105. biotite/structure/dotbracket.py +27 -28
  106. biotite/structure/filter.py +8 -8
  107. biotite/structure/geometry.py +15 -15
  108. biotite/structure/hbond.py +17 -19
  109. biotite/structure/info/atoms.py +11 -2
  110. biotite/structure/info/ccd.py +0 -2
  111. biotite/structure/info/components.bcif +0 -0
  112. biotite/structure/info/groups.py +0 -3
  113. biotite/structure/info/misc.py +0 -1
  114. biotite/structure/info/radii.py +92 -22
  115. biotite/structure/info/standardize.py +1 -2
  116. biotite/structure/integrity.py +4 -6
  117. biotite/structure/io/general.py +2 -2
  118. biotite/structure/io/gro/file.py +8 -9
  119. biotite/structure/io/mol/convert.py +1 -1
  120. biotite/structure/io/mol/ctab.py +33 -28
  121. biotite/structure/io/mol/mol.py +1 -1
  122. biotite/structure/io/mol/sdf.py +39 -13
  123. biotite/structure/io/pdb/convert.py +2 -3
  124. biotite/structure/io/pdb/file.py +11 -22
  125. biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
  126. biotite/structure/io/pdbqt/file.py +4 -4
  127. biotite/structure/io/pdbx/bcif.py +22 -7
  128. biotite/structure/io/pdbx/cif.py +20 -7
  129. biotite/structure/io/pdbx/component.py +6 -0
  130. biotite/structure/io/pdbx/compress.py +2 -2
  131. biotite/structure/io/pdbx/convert.py +222 -33
  132. biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
  133. biotite/structure/io/trajfile.py +9 -6
  134. biotite/structure/io/util.py +38 -0
  135. biotite/structure/mechanics.py +0 -1
  136. biotite/structure/molecules.py +0 -15
  137. biotite/structure/pseudoknots.py +7 -13
  138. biotite/structure/repair.py +2 -4
  139. biotite/structure/residues.py +13 -24
  140. biotite/structure/rings.py +335 -0
  141. biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
  142. biotite/structure/sasa.pyx +2 -1
  143. biotite/structure/segments.py +68 -9
  144. biotite/structure/sequence.py +0 -1
  145. biotite/structure/sse.py +0 -2
  146. biotite/structure/superimpose.py +74 -62
  147. biotite/structure/tm.py +581 -0
  148. biotite/structure/transform.py +12 -25
  149. biotite/structure/util.py +3 -3
  150. biotite/version.py +9 -4
  151. biotite/visualize.py +111 -1
  152. {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/METADATA +5 -3
  153. {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/RECORD +155 -135
  154. {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/WHEEL +0 -0
  155. {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/licenses/LICENSE.rst +0 -0
@@ -1,85 +1,102 @@
1
1
  biotite/__init__.py,sha256=gzqOy5P7Zf667uYuUwqjLLW0GiBdqc23NLcZaXMuHKw,563
2
2
  biotite/copyable.py,sha256=Qnja44k58dAc3WkIUM0svqrbvqO9pSV-Atr9MUJSoCI,1968
3
- biotite/file.py,sha256=oZdBRv34nrGFJ7ZIrSW9uf4NSk9H3Mg0WxgbQqxibbU,6756
3
+ biotite/file.py,sha256=ktpRUk0OH5_wKIJHtCX3zDjXeJ3eQ4ycDjpp7HttUYM,6977
4
4
  biotite/setup_ccd.py,sha256=9StRz4qPVdTJNrPUoA_liwvkKnTb8O0U8PDxt1tDVwc,6248
5
- biotite/version.py,sha256=mLrG-mC5i2vs5IEM3ZgT5S9ZdaqM1wQHESPk1-Rj79o,427
6
- biotite/visualize.py,sha256=d926kscZJdQKYM9v7CUaAeMial11N8l_NyC7_fVv7wQ,10277
5
+ biotite/version.py,sha256=bkKCVnDOy6zWTEO3tQhqGU5jAs0SW1QnX5UfCnuEW3U,532
6
+ biotite/visualize.py,sha256=z4lBfJAt5YxGqtgxgcLHKMwVcE4u6fqExEyrOHcSiaY,14330
7
7
  biotite/application/__init__.py,sha256=Rei3EwlpCnC_cJNQoTJYY_Gw_qLdsqgnRxV5b1slHJU,3148
8
- biotite/application/application.py,sha256=WKGVuCJ5WTwuoOmSWAklZwAGbEgJaTdf3fFmb4f1Iv8,8374
9
- biotite/application/localapp.py,sha256=3WgiDMNXL1T7K5_g1URkLS-OqfBVQE48E7FcwoglfUY,10612
10
- biotite/application/msaapp.py,sha256=NZJVMWyx7TgiDI5NP7FMZx1ZOUfYJU8wKxBqcle-Pmg,12339
11
- biotite/application/util.py,sha256=GgOezqMoxjXeWLwce1HL3gWByZAWmoRhWc3JRjqo2q8,2168
12
- 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
13
13
  biotite/application/autodock/__init__.py,sha256=QtcZDgjFXYaHYSoVtnx8Bs2YA9TvwCg0fSkMfrxKK3k,327
14
- biotite/application/autodock/app.py,sha256=zfqKFYT6K8zKrHN1uotIX-gBAKdj_kzB7klRThxClO8,19186
14
+ biotite/application/autodock/app.py,sha256=30-FGdjutoj5pHCxiedZywrzeFRm0Fv45eVpFaO84YU,19192
15
15
  biotite/application/blast/__init__.py,sha256=90FNcYrxTkEGlzf8RSR1uQkSp4BF42S99XK6FXnmUY4,380
16
16
  biotite/application/blast/alignment.py,sha256=aPbMz_qyH8Izl_g24BQKgvh6McYXyx0tPsGcocwQ4E8,3209
17
- biotite/application/blast/webapp.py,sha256=byuSfcaKHKokxUwf2fjT3-DTtqsiSD0gB3lysGi7Wg8,14891
17
+ biotite/application/blast/webapp.py,sha256=7-r_Jw7gHysUb8Zjsv5mc0WyFdbWblamqVXYq2He0-A,14875
18
18
  biotite/application/clustalo/__init__.py,sha256=UtEQiS9nDZF9-Sup3kbi06mTjv6YRD9Qbu5A722bNlY,338
19
- biotite/application/clustalo/app.py,sha256=TMZEHqZc_czqAFtsEg9cYIPTCCLltbgbEqC6zhas2WM,7640
19
+ biotite/application/clustalo/app.py,sha256=hBnmdh2nhA1ipxz4OzVZ52UMyA0hqxf_MAej3bygbWU,7637
20
20
  biotite/application/dssp/__init__.py,sha256=smuKF9_8g5xzY-MFjYXTYa3wbTfQD4g6L3TDCfMTr8w,335
21
21
  biotite/application/dssp/app.py,sha256=ZBgW5R5Y1nt1D69imUpc_79-XPm9N3yqfdZKxgVc8-M,5482
22
22
  biotite/application/mafft/__init__.py,sha256=urPUmmuKAsB9DQeEeaj8EDt3uL0UjgBSo76H2HnLsLs,327
23
23
  biotite/application/mafft/app.py,sha256=W_iWXuaO0CaCFpnTyawlmQ1P0wt9pnGnwr-AzAudLM0,3397
24
24
  biotite/application/muscle/__init__.py,sha256=26qqctlXpZqoFBD1K_y_Zv7QZfDdMHOodGAXW20r42Q,351
25
- biotite/application/muscle/app3.py,sha256=OmugKWOwQhI6a7Rg0rOFD4_AHlLJjxG6KfoI_ANzprA,7840
26
- biotite/application/muscle/app5.py,sha256=KPwqhPjSUPRH0y0wd2Qg9dCEt8KY_lZiJ5MHK2nJYNc,4598
25
+ biotite/application/muscle/app3.py,sha256=pJtzRTyByxVFpcjMJCEBP4UWfRslpk5pc6lPuOjrbNE,7880
26
+ biotite/application/muscle/app5.py,sha256=aNuZzvymFXK3h3Iy0A0W90K_poPs_5qVOaYmVwS5mCY,4637
27
27
  biotite/application/sra/__init__.py,sha256=GwfAKbOfTTYaLVdTwdkJxCMCY-SUd7WsN7BDAU2Xq7A,571
28
- biotite/application/sra/app.py,sha256=PIiBIy5wZfzcyDEh2N3oD9I_HwnCDWE4KJ7fy0VB_AY,16316
28
+ biotite/application/sra/app.py,sha256=usJZ5uZ0durKYIBF58KauxBkwBtvDAG-iX_I4IBCRgY,16021
29
29
  biotite/application/tantan/__init__.py,sha256=XivhGt3vpQ7EvRKdxT_jQNXIPnvVxAUXCnHYZkSuiHY,340
30
30
  biotite/application/tantan/app.py,sha256=nWE3rlDqf3-jfpIXUw1ddH4ooiD2lZ1GeqBvGXEXtsI,7637
31
31
  biotite/application/viennarna/__init__.py,sha256=HlvHvgsTdzTbq3e9luAmMP-4DbkiBqx5ru69swdz4ns,491
32
- biotite/application/viennarna/rnaalifold.py,sha256=sLFebN8_ThaC0r4tBPAsYWHrbSYAhwdr3D6QxSj3dlI,10918
32
+ biotite/application/viennarna/rnaalifold.py,sha256=16arcCP55XC8OXNLkSLPNrMrHuU7b5VLyz0xqO_MDhI,10993
33
33
  biotite/application/viennarna/rnafold.py,sha256=skqZzqE-otS6uL38isGpikLUbwf8srsOQirINB6qi-8,8164
34
- biotite/application/viennarna/rnaplot.py,sha256=WOBsfgYZ0pXmpbCc4NFHfdFITfsLhgBKDvZtWSxTqiI,6622
35
- 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
36
36
  biotite/database/__init__.py,sha256=N3PuLKuEbQ0J55CddwryBGiLfYSazC697F8KnxizrKY,748
37
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
38
40
  biotite/database/entrez/__init__.py,sha256=88kXhS1XqXb4exnfZIaKD98t3RH3gEZBiNR-aBhl-OE,403
39
41
  biotite/database/entrez/check.py,sha256=3JQZshjekA1woJll6UefEsUZ8kMw-MG1uh86jGgDomQ,1913
40
- biotite/database/entrez/dbnames.py,sha256=k3FbpMP5No8m0Gq_PR4TWZkzFFXHiNrQahXcXYAqCvo,2711
41
- biotite/database/entrez/download.py,sha256=qblZk-OZ3UQWTO4ECpyIVNCTUU12qSK9hvieSK1h-lM,7605
42
- biotite/database/entrez/key.py,sha256=sH-RU0oEDG-u5RaZyr506acSBpwAfeScE8HA34QZhR0,1156
43
- 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
44
46
  biotite/database/pubchem/__init__.py,sha256=YvB4_HXgHto_Jw6PdsSNea-sFoh0HtEUWD7ByyxH2Xg,690
45
- biotite/database/pubchem/download.py,sha256=wzKlu9LhUcVVJ-tVmBF5sOPlKbopO55DnnBiG9pUpIA,10125
46
- biotite/database/pubchem/error.py,sha256=ebfAx3Q3-qlmhA4vRkPG9OD9MEKM0cSsTVUkHH7bx5c,733
47
- 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
48
50
  biotite/database/pubchem/throttle.py,sha256=V4RzypMfh1IaBC8yZrH1l8W1k7v2KLpj1_fK94k-__w,3384
49
51
  biotite/database/rcsb/__init__.py,sha256=BKYOAhSIX1zb00wp_6bw30M7XGliu64B35Dm2Gf-A14,345
50
- biotite/database/rcsb/download.py,sha256=Orst9nfBrcDJhUyfj3aS8Tf11N9tdNSpwAoLUfWXgnE,5781
51
- biotite/database/rcsb/query.py,sha256=pSNcDTEBiTAWMDRLV3SKMfNL4s_q4nM4w8gOcpWTRk4,33883
52
+ biotite/database/rcsb/download.py,sha256=hknojHvR_pj6Q_zwuHEJbQudOZehRG0dBsHZzlQkTfk,5836
53
+ biotite/database/rcsb/query.py,sha256=Dvpp7nV4UwPH_3gVmIyHmvP4AsIHGQcgoZPUDkULG-4,33858
52
54
  biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
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
+ 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
56
73
  biotite/sequence/__init__.py,sha256=fUoOYLTavBTicHu-JCQkvrCAyRfKRspfCItufOBDGGE,3507
57
- biotite/sequence/alphabet.py,sha256=CzgnebrYH_zCnBD7arCAUX_46ZzYHMWFKKDoaKVY_cY,17800
58
- 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
59
76
  biotite/sequence/codec.pyx,sha256=JIKPODmlk7RGW1GIhoUSrbfS1XRJa6vbOb5ur-62jIc,5116
60
- biotite/sequence/codon.py,sha256=zPe7lKcdxM8IvBwF42IBWeaVufMFXbuwViaMBGHgWqs,16869
77
+ biotite/sequence/codon.py,sha256=zXGEitMgOomhems28nQtydwR3NH-3lxmCOYAGDKgITQ,16822
61
78
  biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
62
- biotite/sequence/profile.py,sha256=62fXOvouRGuPZ1TD-Y73DI0ui7ZOzSwX1hDCCGtJmrg,19942
63
- biotite/sequence/search.py,sha256=J6ogMj58ft6bLGUw6IMckwG4nJonIojiICyAvv7mn7w,3207
64
- biotite/sequence/seqtypes.py,sha256=FENMFahEBe86svQa7csx1HZHAHp7DIJ39D_xBSUbVXM,23806
65
- biotite/sequence/sequence.py,sha256=lRfkfK5r5awT8a4jqEZSn-z3Q1XjcS3BsqxTLBTKWXw,12067
66
- biotite/sequence/align/__init__.py,sha256=wZEaGdpVi5ei6giroWWphOtfHn_jqBZPNpyAYqqg2gc,4918
67
- biotite/sequence/align/alignment.py,sha256=wdqW29Fi_F0se9DJn3_nQmiyAkVgvLYhT-n2Ta2SF9A,22373
68
- biotite/sequence/align/banded.pyx,sha256=BB41oDfUs4yE7U3Q5CfE66B7BmFTMwOcFnmEJ9xLukA,26044
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
69
86
  biotite/sequence/align/buckets.py,sha256=3QLzBDorc0ZYJv2SNuRn-mWmT3I2XljfCD1AoNV3ldw,2535
70
- biotite/sequence/align/cigar.py,sha256=DWkAlFL05b3Px0Bek9KNnU6UhvjkXxw7rCRsilREAKU,14710
71
- biotite/sequence/align/kmeralphabet.pyx,sha256=RSONYcLGOMGbW0qW2dXRlXhGxFVpVie3DDTwRTvU3tI,19231
87
+ biotite/sequence/align/cigar.py,sha256=5Q7TU4jVsCsk1gbyVtwiX3ugvqN90WRGqhl0UCNteec,14760
88
+ biotite/sequence/align/kmeralphabet.pyx,sha256=CW2EymGklsnL_REWTdGx_r2pe0fNwdDmfjmSqf-IfiY,19231
72
89
  biotite/sequence/align/kmersimilarity.pyx,sha256=tmAKKZY2JOvnPjU0PQqInvb_MRo7whUxgX0iVZNWIbg,8665
73
- biotite/sequence/align/kmertable.pyx,sha256=NmQeOlRTfr7B8hqX7N5lg8VsLLVOsG9MSRjVWsgUhPo,125108
74
- biotite/sequence/align/localgapped.pyx,sha256=523kib6BGDASd4AYZw4j0AMx7c_TfKr_gO-LTPL2Puo,34277
75
- biotite/sequence/align/localungapped.pyx,sha256=Uid8_OGa2yLrLeoblEF6VqUanqtvcAMgJHKWBfz9Ppw,9974
76
- biotite/sequence/align/matrix.py,sha256=b4dCr6FQGIfwnSBKQ5tbHvxHS55JTTalH1KGQWD9vhI,22725
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
77
94
  biotite/sequence/align/multiple.pyx,sha256=J9MLWqzSvJN-1eWsjCPGlCdr51cSYkkiwyjyyE46qFo,22585
78
- biotite/sequence/align/pairwise.pyx,sha256=P8aiNasedIZPuTrNfUSkQK_6fK5msdCmvcXAVHnPgP0,23422
95
+ biotite/sequence/align/pairwise.pyx,sha256=ekSxD8zMK8lbSZGAxZAPe_bo339Me6ON4lTvzM-jn9I,23266
79
96
  biotite/sequence/align/permutation.pyx,sha256=G9quD4yyP_5BCgVkJE_Xf_9wovn1Bg_MXPtltopaUYw,10340
80
97
  biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
81
- biotite/sequence/align/selector.pyx,sha256=xVc2DyA4KHTunzulYaiS225Ghaw3Hm5_44hdSBxdNd4,34425
82
- 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
83
100
  biotite/sequence/align/tracetable.pxd,sha256=JhxS9sl5wV6HD_cJMXaBt1zm_4_y5twsBs5buMVDYI0,2888
84
101
  biotite/sequence/align/tracetable.pyx,sha256=ReX5kId42RQqlMZmNRpzMmF3_9Z4laL8dXK88IiW-6c,15824
85
102
  biotite/sequence/align/matrix_data/3Di.mat,sha256=-vJKsfx0GvUTWQLn6E4iQqAb17886onYD5277vE0DSc,2044
@@ -175,11 +192,11 @@ biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=E52mnslKgzhNeB6n3LNT
175
192
  biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=xABdTJkFD8zQKcmyvnt6jL3saEP0o9CF7EcP3KM9aU8,1875
176
193
  biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=FzdtLvS9xnAvNH_xCZ9P1ydCHCMaFeYC6VkqA844x5Y,1875
177
194
  biotite/sequence/graphics/__init__.py,sha256=nQMB_4upyPX-9_f6rThY9-KSRkGtBi_WRxMc92v2A6I,1185
178
- biotite/sequence/graphics/alignment.py,sha256=pgmbX8R2rHby3ZTq6ER7UZwGjrIPdEhVxSDKHn_TmoY,40645
195
+ biotite/sequence/graphics/alignment.py,sha256=G4OTCmF48Z7qmqaSMGl_v4BmlDnB1y4os3B8BLd2Cts,40469
179
196
  biotite/sequence/graphics/colorschemes.py,sha256=ISSJvX0c840TJEhnjH-Y57jo8LhHCuaU3DTFNu3nxWI,5687
180
- biotite/sequence/graphics/dendrogram.py,sha256=txLxITGdxY_iUXwtcxqxMqK00GUR0MPIayVxdTqz2uM,7821
181
- biotite/sequence/graphics/features.py,sha256=L1RksYnwHy0bHYWNUyeso4krWLrYrxekj9zxp9bYpuQ,17839
182
- biotite/sequence/graphics/logo.py,sha256=EYaz9h9rSCUn2LLLKBsLon7BA2s1vRfsGdPOQLFoGto,3923
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
183
200
  biotite/sequence/graphics/plasmid.py,sha256=9SZItKWdLSCdTbolBsWDPyVDb-75aYGtTsPKH_9ywio,26714
184
201
  biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=O5CIZo3B4kA6ItoEAFCcCwvkFlz5-9GH4fRH-Hh6Ugc,964
185
202
  biotite/sequence/graphics/color_schemes/autumn.json,sha256=ykykAiaOGDBaBLXwtjqVBRYmce-8uK4NgtwHgnkLfio,893
@@ -204,129 +221,132 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
204
221
  biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
205
222
  biotite/sequence/io/general.py,sha256=7JQBPcp0gVblaGUwYW05dYreyOG9J5LFUz-v6XGGX-k,6895
206
223
  biotite/sequence/io/fasta/__init__.py,sha256=6aXOhuGVn4FJoJMop3HedLQ6IRrZiuEOWCrC-sGtu28,742
207
- biotite/sequence/io/fasta/convert.py,sha256=aBD3anuhtaUNtIKQCFuz4X5WiCXVjD0MiD8R32qmOKI,9705
208
- 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
209
226
  biotite/sequence/io/fastq/__init__.py,sha256=p3dmgI_ytFxai_tdrqpRhkTUzBkQMM5J2cNQ1p9-JXI,607
210
227
  biotite/sequence/io/fastq/convert.py,sha256=BKZ3_wHFeynAfDLNKDctI2Amfl5-F0wNyV6qv_uctMs,3749
211
- biotite/sequence/io/fastq/file.py,sha256=MVuaOL7pHk1NAOdRtOSDSONfIe8ovknZ-b3uBXDF870,18323
228
+ biotite/sequence/io/fastq/file.py,sha256=Ub_a3jhtjnHztN35_eAK7KQpM2xaG4vtZKam5JAx5gI,18324
212
229
  biotite/sequence/io/genbank/__init__.py,sha256=DVTqOI2ilzlo2O-IyfUv-7WxsxVIBPPtoEjZ1MNV3Pk,490
213
230
  biotite/sequence/io/genbank/annotation.py,sha256=J8_DODOqNcPvj_le5md3-9nttlNV3ViXCNtGAdNtSBk,9700
214
- biotite/sequence/io/genbank/file.py,sha256=BbefCk8q9XQafbpqY1kKgN4_XYQ4Jlofq9sNnnYAdb0,20939
231
+ biotite/sequence/io/genbank/file.py,sha256=lT3S853nNLUUlxQdkvvNADJa-wJ_5QIgHYZmSF6f0BM,20927
215
232
  biotite/sequence/io/genbank/metadata.py,sha256=bF3fttJMmFa6eELvQ9UqzFVSgGkVUqLfVsgiLz01LBA,9687
216
- biotite/sequence/io/genbank/sequence.py,sha256=81q3memdbZkI63ljhDLGEkJtKrpfpRzflGb_WcDNbns,5590
233
+ biotite/sequence/io/genbank/sequence.py,sha256=_y-IcIad0EYUYovy9hcCt8DzKfoboxBPJXE5Nhw72yA,5677
217
234
  biotite/sequence/io/gff/__init__.py,sha256=-m--LdBhi8sDWD0mbjxoxU_hRPSeJ7APYCYFKkpb448,949
218
- biotite/sequence/io/gff/convert.py,sha256=ojfSlrFuQZB1EEeZ2iK6duOSCQQtOU2glvsA4qkqXFg,4742
219
- 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
220
237
  biotite/sequence/phylo/__init__.py,sha256=aNP1B9DNNTXMyiqWkzF6JZFynlcmIg-bDeN-eDKakgQ,1297
221
238
  biotite/sequence/phylo/nj.pyx,sha256=YOseJP7fKCnqhh8w3mK1z3fw6cKF5sU5oRkb1D3X9vI,7501
222
239
  biotite/sequence/phylo/tree.pyx,sha256=kmT2kO9cH3svQOxsyuPLfbUsWnTNdfVrx5xaxcmTC3I,40374
223
240
  biotite/sequence/phylo/upgma.pyx,sha256=llgc-9fEOU-D1a-ESMSIAoPjHvsd_L0-GnwkL-uzWNc,5376
224
- biotite/structure/__init__.py,sha256=YNaoZja9BAB7HA1dEiMpvEg1jFieHUt6mRmpybIGGi0,5582
225
- biotite/structure/atoms.py,sha256=GV47SmC_BBok1mZEiQBN4lwrSLR9bczWa1V2z42qt-Y,52012
226
- biotite/structure/basepairs.py,sha256=eZF67fnecHkvDYnIlfeejdJC7sCDWYqOghjbweLoxFE,51163
227
- biotite/structure/bonds.pyx,sha256=m23KZbTUR-iCso2soKPoURt5Dbqtfcaej5VpJBxt89U,71518
228
- biotite/structure/box.py,sha256=zp80_Q4Xv5t2KIfrSK-SachkIbbK1mctl91mVrk5T3A,19186
229
- biotite/structure/celllist.pyx,sha256=gGv_j-jVdoC6K-8Dw38Tc5Xq_KbEdFO5ZnvHZl__htA,35310
230
- 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
231
248
  biotite/structure/charges.pyx,sha256=ZqQeMaSr0kjgBWRN_mYWBXV6wYtglADRrvY4ZQ0KKSU,19341
232
- biotite/structure/compare.py,sha256=jf4L3xuPz_ZBNhdMHpxNaEu27qVgy5z1mXRz-dfoyFc,9711
233
- biotite/structure/density.py,sha256=jlWog4xJcaHRvtMiLQueeJJwzIH3ZnRiZSb-ZCDq9B8,4305
234
- 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
235
252
  biotite/structure/error.py,sha256=NaQBi7CGUYpa7-Y9t0We8iVEJwqpsNWLXkr1PTBKlxQ,822
236
- biotite/structure/filter.py,sha256=e3xLwZobrhRJ-7uX4HeerstE5sC8b7RpIJ_mg9TTPEM,18557
237
- biotite/structure/geometry.py,sha256=BunVOych9hEQOVSkHa94mw-r7egmJ_BpqU5cc_VUh_4,24078
238
- biotite/structure/hbond.py,sha256=7eULKwg94uQY2G-3ea8M0yOOHi0-tl_2TV-Ia2lzLhI,15646
239
- biotite/structure/integrity.py,sha256=ubkv2vA5yhb-3GIsX4ZHsAGiB-zQ30Pr_hUlpWHJcHw,7041
240
- biotite/structure/mechanics.py,sha256=fjNrK0BDTyKDgnxK-hMG2P8uTnqSZWSFrZi6s0RBEeo,2661
241
- biotite/structure/molecules.py,sha256=ySy3JUHpWubhpEPLNIVFGrRSEvzCBgQgT94VWgKQ2Yk,15856
242
- 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
243
260
  biotite/structure/rdf.py,sha256=XAkbnbfk0wx_cIlrDYXBMUzzShgICUCpyPPfTNviWBQ,8349
244
- biotite/structure/repair.py,sha256=wAxye1HguqSqhELWEpuxIkaTkv3ZswDXTOhkEZhdchc,7300
245
- biotite/structure/residues.py,sha256=iuVK2pVfU8qRCf7kmCbO8lfH4O4PfrECmbOjCk3B2sU,23026
246
- biotite/structure/sasa.pyx,sha256=4G_5jJGRsUenLtVPr9mD9KlbYfmP4WnDY_iHXjJE_pw,13305
247
- biotite/structure/segments.py,sha256=6fg6m7bWZeuD61QdR05CigZ-D8UwM7H1q_RpZJ0ID6E,5684
248
- biotite/structure/sequence.py,sha256=Hpt5FvDJG1tBY0eQJNri-DboeZ3BoADy9I_MzWlzOq8,4357
249
- biotite/structure/sse.py,sha256=w_ww5JwImQKDlLQiaDZLEr49viP7WZyYg_p5n59Eguw,11714
250
- biotite/structure/superimpose.py,sha256=37elE1zeY7cAAnF77B6zerQDqtnHZanpqjB_xcWlDSk,25813
251
- biotite/structure/transform.py,sha256=7yuzqo0y4fVDOIYk_fhOuaeBIzPAL9HyMqYn4r9JJxQ,20179
252
- biotite/structure/util.py,sha256=dP_LrUpQNqRQ3H_NFyK9fb1_B9EBvHzuGXjlDlGZVlI,5124
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
253
272
  biotite/structure/alphabet/__init__.py,sha256=UxJZ1_WsI1SPs89ZGv4Xmr-n0pWwlQcBBglfJEXzanY,953
254
273
  biotite/structure/alphabet/encoder.py,sha256=OMQXiMo6xnhIsWoCZ2xKvGpV28k24lM8LhL9cZDDFNE,11715
255
274
  biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
256
- biotite/structure/alphabet/i3d.py,sha256=2qLwtIkUfJkAnpTgDVooear-ezPqF2OJgLso32qC1Xk,3120
275
+ biotite/structure/alphabet/i3d.py,sha256=eq74BA_GWU3A0jC0hjPSsI1AELuOPKpoWXtmDbaoEH4,3118
257
276
  biotite/structure/alphabet/layers.py,sha256=aOevc3a-kL65MfcFsauXt7YBAfMd5V8y5Ch534EvgEc,2173
258
277
  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
278
+ biotite/structure/alphabet/pb.py,sha256=n9EyAgWLZ055CMFhQwc_t1xvG4KJ6lTMGwh_3H1UNvk,6164
279
+ biotite/structure/alphabet/unkerasify.py,sha256=YjuM8molBvuhfhGAAF5L-zo8agC2S3WLTDWMdARn_7Y,3429
261
280
  biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
262
281
  biotite/structure/graphics/atoms.py,sha256=acZXrWVRblk83FfLePe3pHoMcjJJH2eEDyZFmqmw-xs,8359
263
282
  biotite/structure/graphics/rna.py,sha256=7PSX9JHfo1840k8HqKcC8UXX-rxP8YwFtN_VLgUilbE,12311
264
283
  biotite/structure/info/__init__.py,sha256=D1ure7j8lAfbLGqQricxHLuiDHf0FLzV_p4m5rd0dPQ,722
265
284
  biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
266
- biotite/structure/info/atoms.py,sha256=JVgBj9xR5W1ajciY4coTCBvkCss92ODPumtaNKhRlpA,2703
285
+ biotite/structure/info/atoms.py,sha256=rBmzMqUffYmKuQVVHFEz-SaaFSrsRSLFoMwa8dzYYZg,3100
267
286
  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
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
271
290
  biotite/structure/info/masses.py,sha256=s8heq0bG33-6NTeRqA2WpoOqUy-mwQTfM5a7CWA0YE0,4676
272
- biotite/structure/info/misc.py,sha256=w0raKiLvLaHOrf-ddn6ZdLCDuyNvy74VwbZ89eKiyk4,3567
273
- biotite/structure/info/radii.py,sha256=NIy1knADXUw5zx6dMX08LHqXlfS62e98rsA6r3E8wWA,5807
274
- biotite/structure/info/standardize.py,sha256=gZ1_AT2_d0w7mQ3tmnrh1j0QuQLhU-4X-LyVHtIcYws,7945
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
275
294
  biotite/structure/io/__init__.py,sha256=d9zsCIGeTRQ_R8n5xBwi5jrfanRMEeCIh9E9xjmnqVQ,1027
276
- biotite/structure/io/general.py,sha256=uZPbBq35Mp4TuqxAEMWFhUztvolzUzAxSKXXdMI6Pb8,8691
277
- 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
278
298
  biotite/structure/io/dcd/__init__.py,sha256=oy8P1khM60o8M5grpSoGNZkudTBrTUPF33xuLub5sNQ,401
279
299
  biotite/structure/io/dcd/file.py,sha256=zLvngfNmF8pBM6J6kw-i_-rtFiJj1Bh4HSCAmN0EegI,2291
280
300
  biotite/structure/io/gro/__init__.py,sha256=jPh0RWv2vbpmgB0U0lZ6yo7SkVZycYfx2UQqKWCkOHg,422
281
- biotite/structure/io/gro/file.py,sha256=DlRBWIMl8VEA4kW1HS_Z73DayBfMzWZ5DV8-IIeA7C8,13076
301
+ biotite/structure/io/gro/file.py,sha256=sF1sEWg7l9AXOA9HrW0sZo6tg_I1bT-K_RSBFiU67Mw,13083
282
302
  biotite/structure/io/mol/__init__.py,sha256=s1_xplK-Grhil2LLZiNiLU39wLvYr0LB1Vrn66BOmrU,602
283
- biotite/structure/io/mol/convert.py,sha256=_jGauQH97v_RJi9wHqiKdRusSTw2KN1R4kbkmyhiNFM,3901
284
- 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
285
305
  biotite/structure/io/mol/header.py,sha256=Ee78HGDy6DHQEaOh2AGyG0gQGsoMfqLPnfoCo0CwsyY,3545
286
- biotite/structure/io/mol/mol.py,sha256=cY0wBIboaC-o-Mr270pJv-gSErAikFXZJhYpNYyBSoE,5610
287
- biotite/structure/io/mol/sdf.py,sha256=sNFz7Ob273b_LbwG0aeReoTML1yGCeKfA1aADZXMlFU,33228
306
+ biotite/structure/io/mol/mol.py,sha256=Uc4gHxrVTzzRns7gou6cPQSlDeQDPUKlf1z_xvsXarU,5610
307
+ biotite/structure/io/mol/sdf.py,sha256=yV0ROsMsMAN0Y6rgLSri4KVsHwxoBrln4ANldqihMek,33915
288
308
  biotite/structure/io/netcdf/__init__.py,sha256=BVUimn1EklpgdoCFE5sC-H4E47exDe_xIviMeGnn_tk,363
289
309
  biotite/structure/io/netcdf/file.py,sha256=8jht6qCgw0Q7q1-WaQ1iCBjc1QLzjrwpppe3uBZhZ1Y,2256
290
310
  biotite/structure/io/pdb/__init__.py,sha256=UqePAxP48oww8SEexxr6JlugRua8wgOryAvxmHd58f4,753
291
- biotite/structure/io/pdb/convert.py,sha256=TQ3CS94jCNDrWpM0cin37_JdkmGR4NORGZAR7KbkeCo,11027
292
- biotite/structure/io/pdb/file.py,sha256=DKnR7I71L53Egtz-918xFQ3F1dtk6hfIu4OlTv6PsKw,51828
311
+ biotite/structure/io/pdb/convert.py,sha256=AP4PPNvZ_SMjH1afal8jGzMGYyim_wTZNLbG9gOBNlo,11026
312
+ biotite/structure/io/pdb/file.py,sha256=V3I1kH2dFj9uiOjCxcnan5wAStGw_vLt5xFWNJziwg8,51633
293
313
  biotite/structure/io/pdb/hybrid36.pyx,sha256=-feGX_k9H7uAfbqmy37PvlWbuij-mknpbCR2ot1l4kk,8277
294
314
  biotite/structure/io/pdbqt/__init__.py,sha256=JiBnbhNHevtmVIwEeYBubOzK5xu1d9dSny7Zf3Aas74,456
295
315
  biotite/structure/io/pdbqt/convert.py,sha256=M2SytCYO2ihvpcUQCqz4PD4DAKwCPxcjGbhFhJjbDZY,4121
296
- biotite/structure/io/pdbqt/file.py,sha256=Y0RrMaW_98_kJ3JagGwk5F0DfedkxfG1KxaD1dU_9_Y,27321
316
+ biotite/structure/io/pdbqt/file.py,sha256=Jl4DiewnIGd9UeVruhTxkZaclIW94aYpMDBHB37PVtc,27326
297
317
  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
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
303
323
  biotite/structure/io/pdbx/encoding.pyx,sha256=Ckb9r27HTKLrxRE93Bf-im0mu5R9tuCTh_-2o4NwMWc,32214
304
324
  biotite/structure/io/trr/__init__.py,sha256=xp4FpuAy_ESqzVWyugRXUHZ0iF8j5ox6EfCxSWhkcUY,372
305
325
  biotite/structure/io/trr/file.py,sha256=XcdYOf9M2tjRXMM87p9U7jMdQb0PlTFvDHXHgSdjbl8,1278
306
326
  biotite/structure/io/xtc/__init__.py,sha256=P17UBQnG-KmOlScHp46FXAb5i7d-ZCMlyljcOkFolMw,370
307
327
  biotite/structure/io/xtc/file.py,sha256=X4iIDjAWn1ZySg3NjbPeSMNByoyH1y8asmtqcBYycpE,1278
308
- biotite/sequence/codec.cp311-win_amd64.pyd,sha256=iYphrn_HACGlR4BNmcYgptUUtFl6UvK9GVTntzO2p1U,247296
309
- biotite/structure/bonds.cp311-win_amd64.pyd,sha256=7lt3LEYiiSJCFvI2_JRvOmsViIUanOUqxCdOSFxbxHU,488448
310
- biotite/structure/celllist.cp311-win_amd64.pyd,sha256=MCpl6gB0Q5y425eeU2M6Ye3T9oc3PajjhDCQih9ssQo,256000
311
- biotite/structure/charges.cp311-win_amd64.pyd,sha256=VzRnq-K3vnamqzCrnohuX3bspOKYGM5sxkTTRTF-EjI,218624
312
- biotite/structure/sasa.cp311-win_amd64.pyd,sha256=vJke-rhOWaNLzf8sk2tRpbKQr2X7CgpLSGfVtYA9bCk,193536
313
- biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=fqaX8KL_AmPJZzkR-hHHnJLLp2rwRnQnyfJrYvGUA7o,497152
314
- biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=eUeJ1mqsb8kjWmlVtYBVGuzBFol-Zohav6xiTwU1r2g,335360
315
- biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=8B1jkjrIb5h8U_dudWs4Xz787qnEZB86jRCk-26GZZM,175616
316
- biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=8MxE6Ovt3WAWaVIJW9cicPYNH_dzhtk4QxYiz8V2-FM,603136
317
- biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=O7txjgZNIQmYrzb7nyLRktfiMTDwHSfSMZ8V_Kc-lwM,992768
318
- biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=jqnMM-p59GGEn-bfyzMatSg_jnhYCFsiVNZEm02PwQQ,261120
319
- biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=83fVhe7g_rvotDAH0WWra0vLNlyjg4yEcMpTQmYPsEA,414720
320
- biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=6d0MscGeS9LnEsP_FzzXBnuT-lvnYHmGcGlUBpbE_1E,537088
321
- biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=abWL5wlsCeZa6j1yELCtMrCJUHiKfaJQmeq9ILrGMVE,185856
322
- biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=7KXgGdwjGbYQ0hc4rdyg9ja47wz1jz_c0VNIQiR23Pc,257536
323
- biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=ohK54e4DNgXxs4gHFvL1vobN7aREjqJE5c5O4UzATaI,152064
324
- biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=urxGg-hPxgOrLEJfHrw50v6ooL-3MAGO97jZOYlD7r8,172032
325
- biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=QbSIPsssFcKlK-b9ArL6UKRQMu6hi7Exx1vsXa3VvKQ,210432
326
- biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=3sjjluMkoyc83RoTMd4n03Aq6VFUcCDpApDnLlvj608,164864
327
- biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=e0VuyIGUgqolVRc0gBPE3cW260C7nfp1OX49tBay98Y,152576
328
- biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=TLktCH5tu14LqNBKhfFYQaJv8_fdyyvnNOcx8n-W-1I,1009152
329
- biotite-1.1.0.dist-info/METADATA,sha256=AWoJEvD_xouBG2_P5lKh-FPZOZQ9C12cRsO8GsBMBfE,7224
330
- biotite-1.1.0.dist-info/WHEEL,sha256=tUtJ5bXThObXzu3Mmtrhn2LpWmyDlL72mq7DuHq3018,97
331
- biotite-1.1.0.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
332
- biotite-1.1.0.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,,