biotite 1.0.1__cp312-cp312-macosx_11_0_arm64.whl → 1.2.0__cp312-cp312-macosx_11_0_arm64.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.cpython-312-darwin.so +0 -0
  49. biotite/sequence/align/banded.pyx +26 -26
  50. biotite/sequence/align/cigar.py +2 -2
  51. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  52. biotite/sequence/align/kmeralphabet.pyx +19 -2
  53. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  54. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  55. biotite/sequence/align/kmertable.pyx +58 -48
  56. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  57. biotite/sequence/align/localgapped.pyx +47 -47
  58. biotite/sequence/align/localungapped.cpython-312-darwin.so +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.cpython-312-darwin.so +0 -0
  65. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  66. biotite/sequence/align/pairwise.pyx +35 -35
  67. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  68. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  69. biotite/sequence/align/selector.pyx +2 -2
  70. biotite/sequence/align/statistics.py +1 -1
  71. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  72. biotite/sequence/alphabet.py +5 -2
  73. biotite/sequence/annotation.py +19 -13
  74. biotite/sequence/codec.cpython-312-darwin.so +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.cpython-312-darwin.so +0 -0
  91. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  92. biotite/sequence/phylo/upgma.cpython-312-darwin.so +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.cpython-312-darwin.so +0 -0
  110. biotite/structure/bonds.pyx +79 -25
  111. biotite/structure/box.py +19 -21
  112. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  113. biotite/structure/celllist.pyx +83 -67
  114. biotite/structure/chains.py +5 -37
  115. biotite/structure/charges.cpython-312-darwin.so +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.cpython-312-darwin.so +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.cpython-312-darwin.so +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.cpython-312-darwin.so +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,114 +1,136 @@
1
- biotite/version.py,sha256=IIj5MPQqf7H30zvHF3gsfSLSw1SsdlKYR9SngW-9GC8,411
1
+ biotite-1.2.0.dist-info/RECORD,,
2
+ biotite-1.2.0.dist-info/WHEEL,sha256=RuH0OSSkE2iFFCiqpmSxZqGj3WHRpMHdUp0bulkW7xo,105
3
+ biotite-1.2.0.dist-info/METADATA,sha256=mwg-xyNoWLydJEG7E-KM3V1J3LOto8ZVlu4SZpEp1VA,7318
4
+ biotite-1.2.0.dist-info/licenses/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
5
+ biotite/version.py,sha256=V2bJXGFUmn_IdFy3HF4zr3V9woAW6i1X0GXwu8-ZCDs,511
2
6
  biotite/copyable.py,sha256=C7ycTQxqanxT0SmXhzy5OLp7NpZdNWHyokozdoVDGNA,1897
3
7
  biotite/__init__.py,sha256=rL8ZyaCUjOrECEvRxyHj8MOMp4FHMJ8n6KKgrYf5OAQ,545
4
- biotite/visualize.py,sha256=EYUBKgeNrkPI53f7L4T893NMmLWgBp07aO2XFcdpYTU,10012
5
- biotite/file.py,sha256=TQLcN1FzEbEEOLdR0RUfHr9WPIkmULifHG_LoEWZV3w,6524
8
+ biotite/visualize.py,sha256=GSxIL8PLXMDlaULG-ckSghRifQnBnkseZ-OWsnuno4M,13955
9
+ biotite/file.py,sha256=j95OcMIMkpFRZDNvvXwSqJYvwc_7eCG2GKV1hKlfugE,6733
10
+ biotite/setup_ccd.py,sha256=sWHyRm78imJybCzPu_W-gKR_itxrVwEEGJxMq6YlzIE,6051
6
11
  biotite/database/error.py,sha256=3xyutl2nPzgBZqe5fpejOp6AQXAvtxO2hy_oWRrlcKI,410
7
12
  biotite/database/__init__.py,sha256=C_7zQxecZAB_x-4F_3JtU86TnB2GuxQju2mwfnLLy1M,725
8
13
  biotite/database/entrez/check.py,sha256=5ITmnDoV6-lmfxux-HpXCUjcnI0dyYBwr-mqGkIb5e0,1853
9
- biotite/database/entrez/query.py,sha256=D9f7nY6eCrVTMduDkskXmAAgRA4r11TY3gpkH2UokFA,7374
10
- biotite/database/entrez/key.py,sha256=JS9GxvUMSYYmb2wU5uQduKUjITXRfY62aFyUH7_OMTU,1112
11
- biotite/database/entrez/download.py,sha256=RsB1xgcVSY_fjM1v2CMGwjImWG5e5qFg4_pttdgBxq4,7376
14
+ biotite/database/entrez/query.py,sha256=_TwBNkWAMoUWFKF45xD9WVvfvcpesMv4WgRJU3ctiGs,7373
15
+ biotite/database/entrez/key.py,sha256=QZxGwwq0xbb9Nz8mTFQ-0C8nptxIqtGCmtDKFu0OBhg,1108
16
+ biotite/database/entrez/download.py,sha256=luFFDQMhk2hZtJpGHNqm817qc0I-0e73lzJlepSZ0Ms,7433
12
17
  biotite/database/entrez/__init__.py,sha256=-hAxLc_DdszhiCj6OO_jgSY-xmD05rC4urdUNHusr4s,388
13
- biotite/database/entrez/dbnames.py,sha256=57WUYPlTtPRne74fypNgFnE0cl91_WSRwzkoQsGjR6Q,2620
14
- biotite/database/uniprot/check.py,sha256=7ShClNBBHZkKw09Cewl4drr4C0we7oFGJGHBbgINt50,1292
15
- biotite/database/uniprot/query.py,sha256=dXjrBTeqpfrVOSoHVN4vdbZYR4ZtNvZTf0v_WfVwi4k,7563
16
- biotite/database/uniprot/download.py,sha256=MZan2nFyYWSWgFL-VU3MOJOwp6g9h25_65zFfBr-Kww,4320
18
+ biotite/database/entrez/dbnames.py,sha256=Ddp5IbbBaCsECO4aX9GQiIpOcTK1iIW2u2dfx7Fr2jA,2772
19
+ biotite/database/uniprot/check.py,sha256=ngqCC9eeolz6jowHu3rnDbw1q4vvNgMP7x7EXPO14vA,1378
20
+ biotite/database/uniprot/query.py,sha256=zvk0zqAxr0mNw0RYvYGKecqCA6Cj2wtxliWjkrJmKUw,7518
21
+ biotite/database/uniprot/download.py,sha256=tomBGHnmVZ8J8DHnWqVJiJIR50l9aJQCq9bGCC9yVVg,4234
17
22
  biotite/database/uniprot/__init__.py,sha256=Lsk5Jd-qb5167VTgN48lWSSbqpjCM-fD0XKJyxaZb7o,334
18
- biotite/database/pubchem/error.py,sha256=_-SE2w-Jx5HqL8ll5deiaXAKAeEPC0ysSG6F3Mm8AGA,713
19
- biotite/database/pubchem/query.py,sha256=czvfK8KttZQviw65NsdYFqt-IECW77cN6TrocU7d8oA,26448
20
- biotite/database/pubchem/download.py,sha256=5Se2dU0jB0MPrfCfwuwDDUgO_k7BkRqegDl9c_76IGw,9867
23
+ biotite/database/pubchem/error.py,sha256=Qj6fxWm2HjGa79m5nfGVyPuhBPp54wa2KLMlKbhj-qQ,878
24
+ biotite/database/pubchem/query.py,sha256=Z_DVRY62HhelCtMr3xwUOZBBUpNCwTKVC8ey9dG1HHs,26086
25
+ biotite/database/pubchem/download.py,sha256=p1UtPJ1YuccDWLsXE4Zd410RwqgbwCHj5ZDcISQ6-5U,9870
21
26
  biotite/database/pubchem/__init__.py,sha256=xjwfutIL4-JeTs7v4wCkRyy5q4KE7fGWDvo46ubkXt4,669
22
27
  biotite/database/pubchem/throttle.py,sha256=HXf2l7EW5RLdW0bg72uSdXCDZXFXOE49akhfgKhEdc8,3286
23
- biotite/database/rcsb/query.py,sha256=ztyNlUs72vwjdG3Ci1Mj6UTJb9yupcRray8pYogPbw8,32902
24
- biotite/database/rcsb/download.py,sha256=8q0yA5LL9avzWpy1I6s-59VRHg3mhuJltIldEN5CmU0,5622
28
+ biotite/database/rcsb/query.py,sha256=Ar2uZRuOCMm0RQeMATHfAeTeW5G8eNfg2Iy5qMMZ8JU,32895
29
+ biotite/database/rcsb/download.py,sha256=AtRljEV60NReeuWno-YFNrzrpFY_hetghO31-8VojtE,5676
25
30
  biotite/database/rcsb/__init__.py,sha256=sTJnL4vYwhO7gSszMuT_Lr91uwX0wM1h-fZWiZkITYA,332
26
- biotite/application/util.py,sha256=zDxqVUWcINdTgnLMdC004GXygIUeYWSemwEALk8xrGo,2095
27
- biotite/application/localapp.py,sha256=uvktgVp67gAyus4LR6dXjEc23y8M5n_K5e-ncWzwx-c,9286
28
- biotite/application/webapp.py,sha256=ysKcsdAPlOZVMq3aCHVD8VdGyrrFjEDklMre6aytSTs,2161
31
+ biotite/database/afdb/download.py,sha256=sIaGz0hTj1MBA_XIw9HCP6NGnPfNAyPgryOhLuRa9i8,6367
32
+ biotite/database/afdb/__init__.py,sha256=VqRn4WE6wJWS4Sd916xchmMz7tyPpEflnwOVnInhEOs,333
33
+ biotite/interface/version.py,sha256=B5SBAMUnERPZJKcOJAa02iEx01eH12q22OQ6PA6wDjQ,2364
34
+ biotite/interface/__init__.py,sha256=CEbr_8h6pt3za2ybSeePcNKMsA2vkNUbzYhzP62g2Lg,717
35
+ biotite/interface/warning.py,sha256=rU1F-b1MeIj1OWaK6wMeuM_YE-WKNGqo2TehjTr10KM,577
36
+ biotite/interface/pymol/startup.py,sha256=8W0wIx13MGqGNvwTTT7ogmgypXCO48PI5w-DVPdS9jw,4619
37
+ biotite/interface/pymol/shapes.py,sha256=Q34C5H5PkH4XbnyymwbJYp9iFD2Idj2a_qzDRA8tohQ,6066
38
+ biotite/interface/pymol/object.py,sha256=5_zG4rn-sjreAHGdRLW45IxK9A096zXjgxn1cEgOVag,44193
39
+ biotite/interface/pymol/convert.py,sha256=ldLXSiFdwhEkoZkTtLFOMvymIh9oLniChve54SbHJLA,6044
40
+ biotite/interface/pymol/__init__.py,sha256=Rjp-b6GbSEKKHlHi38umHCZO1re11nnT3dMHbnVBLSc,6568
41
+ biotite/interface/pymol/display.py,sha256=KJfCM9-hzvFdC5KFxvG5-oEXd0MIaf3Ocr3dMQVoipY,8458
42
+ biotite/interface/pymol/cgo.py,sha256=wlG1GkbHAGYVdzaOUPQ5KzI-29lrDkutt0NRw7PIq-8,9859
43
+ biotite/interface/rdkit/__init__.py,sha256=9TJsZQl76H1pKsRpsciQE6afbBzQ_lTUd-pIduu6N8Q,451
44
+ biotite/interface/rdkit/mol.py,sha256=T4Nnc3ttQFfy-4YbbSRLuTpcAhahWjqQGwM7fypouEs,19644
45
+ biotite/interface/openmm/system.py,sha256=V-SDc1YDa6nKHcREXz1cGAN7jZJ2X1cPf0gazz_Gv6s,7018
46
+ biotite/interface/openmm/__init__.py,sha256=PlstOsDTpt4LIxRkctD4hY9AKtImxXubNwCeP_YMWHY,505
47
+ biotite/interface/openmm/state.py,sha256=jmdLw1xc7TQbgeOnZGgSgdmD_rR9VEnMqhX0Wnw_1Jo,2723
48
+ biotite/application/util.py,sha256=-d4D9-hxPoXPDzYC-xkWAPVg2U-KGZcs71T-Aelw23o,2503
49
+ biotite/application/localapp.py,sha256=kN34ncpN1XamVUONU80UWxZZke03XcYSsjdDAfpMCF8,10267
50
+ biotite/application/webapp.py,sha256=ATD_JKb68qZEc71YgBrEgdO2nxdJ-C25KBsofzGFDQE,2145
29
51
  biotite/application/__init__.py,sha256=gOy5iGp5uuKTd0qpR9LgsmanB3ZfdQaTnZcKMRDwSx8,3079
30
- biotite/application/application.py,sha256=KbrqhjBLtkjEix0puJ9VpLQoc3vs4hQZ1kW5O1c55vw,8098
31
- biotite/application/msaapp.py,sha256=hDoyPyDjJVt0qQSZLlR7DLSA0uJ3qTmAke-dP725_ik,11976
52
+ biotite/application/application.py,sha256=MLMft5z1ocBMsTOXkUg-ZeZj0jC8l6WHrYSjgkE7iW8,8096
53
+ biotite/application/msaapp.py,sha256=6e88Q7vgGSK_5uKdOVPcZF6wMKDRGYEKrvc9tb0yjbs,11974
32
54
  biotite/application/dssp/__init__.py,sha256=lUf-A2rJzPLJYZQZGpZUt7HtA0M59KaX6zQSCrkhfF4,323
33
- biotite/application/dssp/app.py,sha256=zhuHcUihTz9b9iOcYJ8ROAPYu-_0gW61d5fEXle2fHI,4840
34
- biotite/application/viennarna/rnaalifold.py,sha256=DmsHVi18izXS0ee6FN6MfgrCEScw9v9qSvkGOjHs8IU,10608
35
- biotite/application/viennarna/util.py,sha256=4jvZRRBSxPHzT9HJ9jooUzarUg5JTzDMoQASuBvTSqI,2634
55
+ biotite/application/dssp/app.py,sha256=tHoG8uFmX8WaBHm0Fhjc7D0NXEaMa-zkLvwFzyP4FQk,5323
56
+ biotite/application/viennarna/rnaalifold.py,sha256=QawXG9hYKQzdRt8-J_WiXUcoJx7Whps-iSCzq7DFJEA,10683
57
+ biotite/application/viennarna/util.py,sha256=racSlWGMtRRNtc_wh-ggIJWPDNoxIqwejc_Ztgusk8Q,2635
36
58
  biotite/application/viennarna/__init__.py,sha256=m2obwXBnkDzRDzjrffsGdnp7YxAFz6CctsSmmg03xVI,473
37
- biotite/application/viennarna/rnaplot.py,sha256=IPZ-AOMwblQHoF1Y6xBtN84RqWfDMkMpn8Kiws-7w4E,6327
59
+ biotite/application/viennarna/rnaplot.py,sha256=caKDQ4feNkCnFa7__MUAnY8JMmoS6-0PX_hl__u4oPY,6496
38
60
  biotite/application/viennarna/rnafold.py,sha256=Tr6VfGLkzNhcGujND_k5XUb9uYAMsysnDWQ6oTcIamE,7910
39
61
  biotite/application/sra/__init__.py,sha256=8I-uPkWUiu_ePPp56mI8MkwIOnjjQODpH0YMeOh8Leg,553
40
- biotite/application/sra/app.py,sha256=llsaWNJJaZpvTL1AOl4xWOdsv84AmQaT5LRnWqGii4Q,15864
62
+ biotite/application/sra/app.py,sha256=qb1hRAXcR2xzzy0OeT5YaV-GLrzOnZDp3EZ6hllhQ80,15574
41
63
  biotite/application/autodock/__init__.py,sha256=EhnSP7PGczduv0J0FovH34g49-ruQVHrRWyfz5F0ZCY,315
42
- biotite/application/autodock/app.py,sha256=u-ini9dbq6vkpMQfc28HdyNNxbK-DKoQmHEmSHQ1hn4,18686
64
+ biotite/application/autodock/app.py,sha256=rXKOxNPRrAJDe9nYSSM0kN3_f7xrwGsvuVtGmgINzhQ,18692
43
65
  biotite/application/blast/alignment.py,sha256=r9CfjvHcDCqOrR6YC-IWXq8l76qujYAz4xFfb65sfSo,3117
44
- biotite/application/blast/webapp.py,sha256=TdM-QSIk08O9o1wbqvQhbSGQWOrFZwO9UKvPE-2nE0U,14463
66
+ biotite/application/blast/webapp.py,sha256=_sHlSR1OdhB0bZkS9KiD3z3CXyop0g9MeR1XtRQakNo,14447
45
67
  biotite/application/blast/__init__.py,sha256=hZ031_9ikNQ7j87uaW5OAWbUx3R4qtqpyI1ff8lDTMM,366
46
68
  biotite/application/tantan/__init__.py,sha256=jkRIs_OYhF3pSd5EXrnfbFc7S96a_F87hq2pXk3BxHo,328
47
69
  biotite/application/tantan/app.py,sha256=4tTLuTEy46nGsyy5wvDrB49fXjjV3SpnEXN6y6QXxTQ,7438
48
70
  biotite/application/mafft/__init__.py,sha256=VQPqkbQPAvGePLTb-Kgd1exMxDT5onbab34ukX7fiNk,315
49
71
  biotite/application/mafft/app.py,sha256=gzcJZdUs5Qys0aK1uAcsMNrBB4sIjbju4Sc1hJ3JPh4,3281
50
72
  biotite/application/clustalo/__init__.py,sha256=nHtEaPTQU3oXfZZhe9TyA55NzFknFyAkALLuEn-C6ys,326
51
- biotite/application/clustalo/app.py,sha256=JdICuA14SHdiuYPt6Y1cc1d6zHTNZaXzoPk_y0Nb5H0,7417
52
- biotite/application/muscle/app3.py,sha256=-T6AmkGlBE0EAxp3ZG--tvcxUVBTkBdr7W5qzUrDTXE,8085
73
+ biotite/application/clustalo/app.py,sha256=f5NEOkKCiTDlIVNJ1ozefzixwndVC4_vPQq8a9rzUt4,7414
74
+ biotite/application/muscle/app3.py,sha256=Otgzi3VEYv0iQ_q5TesRJEfB6krbF7wXxfN87JzdKFg,7653
53
75
  biotite/application/muscle/__init__.py,sha256=B1JrhQYjgwSKWxpcYgXS91f2GM5Tc1i9Ocs2wElslRs,338
54
- biotite/application/muscle/app5.py,sha256=cjK26uAcL3dblyxa8WzfJE8FXzo3FZ0p5jn8ttu8YNc,4426
55
- biotite/sequence/annotation.py,sha256=b0A1_NciOz2g3PEG0AgIcNC5XXmHap2PScbIpyKO0v8,29513
76
+ biotite/application/muscle/app5.py,sha256=xYF-iLn-UVue-vu4yGJFaQVtnPi561rwoIVwVCIu_C8,4474
77
+ biotite/sequence/annotation.py,sha256=L_TZL2Gmsuokbr6A6Y6gVa4hbEM3ox_NJ_P5PTsZ4V0,29705
56
78
  biotite/sequence/codec.pyx,sha256=ed415FTMBJfiI9WbgKRFO3tF1f_SpRHxyEafLxW-g1k,4962
57
- biotite/sequence/sequence.py,sha256=6k2WVEd4JX4pnTQ-nbtrhvLBCVEaTpsETfsiCBD5Cfk,11693
58
- biotite/sequence/profile.py,sha256=VtRfHP3f4Ymw7tgV5wPvde22nH1KwOkkKXToHLkbl5Q,17126
79
+ biotite/sequence/sequence.py,sha256=eIZ7Ugz9IwXlWXs_HC2NGyAtDDcP-Vf1z82jynT_PPE,11691
80
+ biotite/sequence/profile.py,sha256=f-KYMVtSB83O5J0Jy87Nzetd4axZDVsUcMSES2J7MJY,19249
59
81
  biotite/sequence/codon_tables.txt,sha256=zZLT642H4qEkwUk5g-hWh-6ZWP_bgaz70fWcxwJDWJ0,10209
60
82
  biotite/sequence/__init__.py,sha256=fSWhobaPGRMJI6-8UYFpjguxVtP4O4cAHmiRxNAGzYI,3423
61
- biotite/sequence/seqtypes.py,sha256=zdj3fFkb_EDB0T4rqQuq-ErtX6TcFiP8kZ0tWINibnI,19346
62
- biotite/sequence/codon.py,sha256=6SBjwz4c6IZiAFZL03qjcrjT84zczltc14haOOAkm6Q,16392
63
- biotite/sequence/search.py,sha256=dF-OtPocZ5XAIgS4GCMt2YOKz0Oxb9b8FvPmVUY8j-k,3089
64
- biotite/sequence/codec.cpython-312-darwin.so,sha256=jdZ3JeqiU1IpFXpF8CGbXZq4LLAZ_BiyOAjObzpk8ug,284488
65
- biotite/sequence/alphabet.py,sha256=OiUxnsbTaxuDjAiB96sVHYTOqG3XvwF5ceJ3tvViqh4,17190
83
+ biotite/sequence/seqtypes.py,sha256=I5OaC9IOJoA9G610Tod67cgCWDQqTAgYpK1FHF8Ofok,23246
84
+ biotite/sequence/codon.py,sha256=Scua9XHD-TnWfCaKHRegKQGSP3XK3wW3zLgxen45ux0,16346
85
+ biotite/sequence/search.py,sha256=G__T-GHMJODWmgh87z5wxs_g9-t1DtvEOd-USp-Qizg,3088
86
+ biotite/sequence/codec.cpython-312-darwin.so,sha256=jHqZDU4Tmfzg0APP55G0nVuZKZHO3s7-V_DeqVx1qCI,284488
87
+ biotite/sequence/alphabet.py,sha256=3iTSuuAsaPtTyqyTjeU0OF5y_17wuhC3lMVbcJGwqe8,17227
66
88
  biotite/sequence/io/__init__.py,sha256=4K13uxFWe8IpNC8yuVxjDiI7-8lmXu7qT6iMmVSqPs4,314
67
89
  biotite/sequence/io/general.py,sha256=sD03pLnkxsT6vFh8806ZhErC8GEG3LF_70NMcVJyGe0,6694
68
- biotite/sequence/io/fasta/convert.py,sha256=m1uWLtCfdzI-to5WLxqiQrQKtWKBDyr14qE_54x0jLk,9421
90
+ biotite/sequence/io/fasta/convert.py,sha256=illuR8DVCKS-K3nxUO4TJZ-u_PTJzD363_5ra7Ditvk,9406
69
91
  biotite/sequence/io/fasta/__init__.py,sha256=rcpXd-Mzp-qCJC2zW3O8XSgpcefOq8ftFLvvnuYL3ec,720
70
- biotite/sequence/io/fasta/file.py,sha256=46NZiI32mqNMAzej8y6uUyCtW-gRtoxWg1v54VteDbs,9055
71
- biotite/sequence/io/gff/convert.py,sha256=6ye_ObtHfZbBoazyXqhRXhCVmLrqq65_lraSIeZDBQM,4614
92
+ biotite/sequence/io/fasta/file.py,sha256=EuFiktTtONHsEevsxkvFzpbEZ2qVdWKyNkFaVcLeaUw,9052
93
+ biotite/sequence/io/gff/convert.py,sha256=fqBNG5SbfU34wVgdHcXcRJC5sIUID-6rdskEz7Vdqes,4611
72
94
  biotite/sequence/io/gff/__init__.py,sha256=KPWsE4Hjd4QY2prhi4W4WmwW-z_kySy0ZiUOSnmyGy4,923
73
- biotite/sequence/io/gff/file.py,sha256=OxQgja-LVAYVRc1tSB5t_1mYenvNX5SJ8VtMV37Y0l0,16096
95
+ biotite/sequence/io/gff/file.py,sha256=0PYwl1KP-nv05BS6aBfzjmOqW-2O3A_R4W5UYE-k7zw,16076
74
96
  biotite/sequence/io/genbank/annotation.py,sha256=t39bqsDmLyLBTS_wc15uGOVsqJ-GRP3iXGIqJBxzUow,9431
75
97
  biotite/sequence/io/genbank/metadata.py,sha256=rhLF30_RSluJ-sulsKpUjqHNqVazvkn98fTCCoATAXs,9351
76
- biotite/sequence/io/genbank/sequence.py,sha256=2iz6gBZEPOqyDI2BOHeeR7poad2G8in1uKcy67z6pXM,5419
98
+ biotite/sequence/io/genbank/sequence.py,sha256=imZmCC1WX_PMCsbV8f9wUJu2PsZluB4JFsavcjq71W4,5504
77
99
  biotite/sequence/io/genbank/__init__.py,sha256=9H6gHYLBtZ06YkT616wwJF89G1sFToSs0QRuQ8noZBQ,473
78
- biotite/sequence/io/genbank/file.py,sha256=UQDvUUqftl7g5mMHPVrhzNzZEai8fmKDXlTfB-EifzY,20366
100
+ biotite/sequence/io/genbank/file.py,sha256=5XvuJCd_FuI2zh03_bLbLSAuORNw4tXr7p9sGutWgVA,20354
79
101
  biotite/sequence/io/fastq/convert.py,sha256=x4rWn7WHdKxW1u7mwDgM8Z3qaML4lAO7r-JiMTQbvaI,3632
80
102
  biotite/sequence/io/fastq/__init__.py,sha256=lhw9bxWS0eKPXzF1lg8fvrNmgAmJPLBzIB6jEP5GOVI,588
81
- biotite/sequence/io/fastq/file.py,sha256=OwSUw-Unp8AQc7LdpJSI2zmavBWsCcqov23HPHWaXQU,17816
82
- biotite/sequence/align/matrix.py,sha256=6N0b6j1MOBrFMnSdX83sWZqGH0e5_dFfIVEhGglbSBI,12720
103
+ biotite/sequence/io/fastq/file.py,sha256=Q5jrBN21Fi0hp6rU5cc68kQPYc1jWdZfMwhx0Ze6oGw,17817
104
+ biotite/sequence/align/matrix.py,sha256=A1PUA43ltUnvYqB_RO6WPbvAtCzZI3zSfeKHP3aVSNQ,22360
83
105
  biotite/sequence/align/permutation.pyx,sha256=xbbw5DJ7c5SXnuSUl2hJUMxzvinKP1Khc7CSdH5cEE0,10028
84
- biotite/sequence/align/selector.pyx,sha256=13MYCmECOYFGoMQHgCRgKKeN74VOUSc0TnZuqRJhBo0,33471
85
- biotite/sequence/align/pairwise.cpython-312-darwin.so,sha256=RN87uh5phOMH-WWJZ1mf3IpQcZ8IseTUxed-wbaoYs0,564880
106
+ biotite/sequence/align/selector.pyx,sha256=BstkOkz-nB2dPtkZIZbU5QlCT-h3QHxdsGg1pGUh-Qo,33471
107
+ biotite/sequence/align/pairwise.cpython-312-darwin.so,sha256=AMd23JR9QZi3404uZogGaOq7ykPErJ75cOfnz8uvtqQ,564880
86
108
  biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
87
- biotite/sequence/align/localgapped.cpython-312-darwin.so,sha256=jY8USq6iNW-w_qedtYOPIOKGA8DwwIAlWyp-mh4u2v8,1062304
88
- biotite/sequence/align/banded.cpython-312-darwin.so,sha256=YE728_hAVW6KFk_5wMnnA--LxcgEXRYGsbz5BW2H_yM,527760
89
- biotite/sequence/align/kmeralphabet.pyx,sha256=J8I33f6AT8vhCNeW7tuZERqbCCC7Z9baC0RCrF01_zk,18115
90
- biotite/sequence/align/localungapped.cpython-312-darwin.so,sha256=VL9Xlt53QQh-KHgQjDnSQM5vGol_6dWkANAlgUFo4Po,303984
91
- biotite/sequence/align/alignment.py,sha256=XxFE0tdH37oiWcxfcbPYt25d2S3MePan7RY6fl8noP0,21351
92
- biotite/sequence/align/permutation.cpython-312-darwin.so,sha256=5hj06vP7XZdp3zwN0UUt-i6-bLgOU0QYEtg3jTQlMUM,231024
93
- biotite/sequence/align/multiple.cpython-312-darwin.so,sha256=eGvyE0cvtLZe5dSfi01JlYaS5IqyrcmHVgHJ6WmQRFc,493952
109
+ biotite/sequence/align/localgapped.cpython-312-darwin.so,sha256=BlR0gh_0MU5z3_edG-vyE7_aoKTYfdqlBalydivT730,1062304
110
+ biotite/sequence/align/banded.cpython-312-darwin.so,sha256=Ah41anvuBPH35vbFIwG7QvCQmYnTo7S8sq4oJTjRtvU,527760
111
+ biotite/sequence/align/kmeralphabet.pyx,sha256=t4MKs3uIXGn_2AB8NRKQxY73RoBLDa-IlKVnSdANkCU,18636
112
+ biotite/sequence/align/localungapped.cpython-312-darwin.so,sha256=C3RaVkMXEKA8yGCFEGXrJKw3TCQxO3cMKqCNqE3wy_k,303984
113
+ biotite/sequence/align/alignment.py,sha256=vf6Ldh0nevFkQ3dHJJRZw6_ZsqoWHHv-6M1Hy_DQgEs,22380
114
+ biotite/sequence/align/permutation.cpython-312-darwin.so,sha256=qaF7EN9yUQIgnSG9I7gn3SMqsJqOlOdkUUuD6rs35NE,231024
115
+ biotite/sequence/align/multiple.cpython-312-darwin.so,sha256=8sRezMC3HJViGec2qnQ2W0AfrbPh4MZug23ngL5PkbM,493952
94
116
  biotite/sequence/align/tracetable.pyx,sha256=1gsT3OV7VkE6i_UpNiYOLVvD2_tfJgbNZb1yv9F4XR8,15455
95
- biotite/sequence/align/pairwise.pyx,sha256=88bZUcDG3CflZPdUN_HMJaIMTKCAtBhmhq946tY__KE,22836
96
- biotite/sequence/align/__init__.py,sha256=Twwj35DdxgKu9pN84u2PEtwo6MekLENbkaGbAPxB2A4,4715
97
- biotite/sequence/align/localungapped.pyx,sha256=rj6gbuyLQIo6ZuPwVt01rs3fOSOjpzq6Vx3v6_zKdEQ,9696
117
+ biotite/sequence/align/pairwise.pyx,sha256=atF365cD9AV6StIJRhFqvg12i9mmEHf1KvJJf0gTaqo,22680
118
+ biotite/sequence/align/__init__.py,sha256=NyYyB9PmYWCBQB_MaI-L54vYR64JraUvP9uobGJN54w,4711
119
+ biotite/sequence/align/localungapped.pyx,sha256=h9wgrY85_t0_wOGDW56uJ9N4bo7GciYpeJZpNIBlp4g,9660
98
120
  biotite/sequence/align/buckets.py,sha256=k8H5RBS5Y7DrMoIOd5Ifrxp-nYWosJuqOYgLd1y-DWs,2464
99
- biotite/sequence/align/localgapped.pyx,sha256=djdmgvACXde0dyqbKttc4itgu0MNh7aF0U9L6tHTZXM,33385
100
- biotite/sequence/align/kmersimilarity.cpython-312-darwin.so,sha256=7_3PwbUeKDCVy_rOgZRh7Io7F9XCLgZEwks9-EIOp68,229544
101
- biotite/sequence/align/cigar.py,sha256=HGHelQe2SH4SdKjcyTmVlvrlllFzDtpiysskFcclIW4,14285
121
+ biotite/sequence/align/localgapped.pyx,sha256=1uoooliEMravtH1fQJSth0a6FEM4La_v32wGP2C0RIQ,33106
122
+ biotite/sequence/align/kmersimilarity.cpython-312-darwin.so,sha256=bbeT8fnQBTAzixMxGJ89w3-nLHDRWQxM4QklDIdC8Uw,229544
123
+ biotite/sequence/align/cigar.py,sha256=ZhxnWSURuKMwOshbeNIK8mtt6r-xcFWXLzoLtluEo88,14335
102
124
  biotite/sequence/align/tracetable.pxd,sha256=_VP1ayP6FZL1Tzn1pCCbt6xPZDzFtE9bH0Gvop2lxyQ,2825
103
- biotite/sequence/align/kmertable.pyx,sha256=6f-ifIWbICKP_ZAItxPqgjQVBoyId5bT2g6-dIO0zS4,121334
104
- biotite/sequence/align/tracetable.cpython-312-darwin.so,sha256=P3JnKkr6PVSC_B3nH12Hkfoz0C094TpVEUAH4yK5-88,203344
125
+ biotite/sequence/align/kmertable.pyx,sha256=EqLVngPURKux5tsrv5PauuN5hLKAJbDDVZWnVGWZufo,121697
126
+ biotite/sequence/align/tracetable.cpython-312-darwin.so,sha256=TwPSKTgbXMXTyk6aHawFU5CBG6ZkkrLvTGtK0dswODc,203344
105
127
  biotite/sequence/align/multiple.pyx,sha256=cUnbuAfYBp_Kt4Y7LeuPeuBiRdyu1D694i1kQIsUqPM,21965
106
- biotite/sequence/align/statistics.py,sha256=98Vaz__s_8GltcMwfErNuKQfXuFKZCq-i1XWkJ_iAMQ,9655
107
- biotite/sequence/align/selector.cpython-312-darwin.so,sha256=jOsJetVytjr8jqO7YeCf172tv1YRW0Wuy1CIoflz7mE,323040
108
- biotite/sequence/align/banded.pyx,sha256=-5peQOsZHoe27GjZCWrlrVN6YxsCEQCn0HkpglxDsbU,25392
109
- biotite/sequence/align/kmeralphabet.cpython-312-darwin.so,sha256=arXwCCzESVDd6mGdJsAiB9NgkvW1n94xhKCojFI61JE,377760
128
+ biotite/sequence/align/statistics.py,sha256=mtscAgqIZIdTjtsvjg4s2A6gzFex0QxyHxmcAxpBQww,9652
129
+ biotite/sequence/align/selector.cpython-312-darwin.so,sha256=RPwZuAsxURxrqEkhoDoFQ5FtjMDe_sTdHJt89w8-y2Y,323040
130
+ biotite/sequence/align/banded.pyx,sha256=DT9XvnQJ16uEgc2op5e3VgsjdtNmhXP01YqbapST_7A,25300
131
+ biotite/sequence/align/kmeralphabet.cpython-312-darwin.so,sha256=Tf4pKp2PJb6NPiij6yQMl3osYzghEpgX-Zj43Pp6z0A,401824
110
132
  biotite/sequence/align/kmersimilarity.pyx,sha256=EBpz8R_fofRd4gsmBJLuH2qZgMWKlzQkCJ54w_-K7gQ,8433
111
- biotite/sequence/align/kmertable.cpython-312-darwin.so,sha256=SrclQEHW95nF-Ib3RDfEfOVr2YgIWQqTr1UXqObtV90,684192
133
+ biotite/sequence/align/kmertable.cpython-312-darwin.so,sha256=Ksu9vkiYK_SfYhlN4__Tb63-_8FlxemZ2XJ-7MuuZxc,684048
112
134
  biotite/sequence/align/matrix_data/PAM370.mat,sha256=ZD8BpkVrVK22_oLSXZb9d_kzNDfic_i0eVT1fUNkyBk,2068
113
135
  biotite/sequence/align/matrix_data/PAM210.mat,sha256=UfUmaJ09ID11GUzuNeK7aUzgZTW1iJLizADnD0qT2BI,2067
114
136
  biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=j6FWyeTXvfpSR0ZGecI18MCATcjM_FTJ2XGoEjWg3Qg,2122
@@ -122,6 +144,7 @@ biotite/sequence/align/matrix_data/PAM410.mat,sha256=gtd1bfoNX8M8Ey4B266w7AyTVi0
122
144
  biotite/sequence/align/matrix_data/PAM50.mat,sha256=L3wZ938pS5_dWww1UAITFNql0NaDyIDk4NrCK9Yz9Ww,2666
123
145
  biotite/sequence/align/matrix_data/GONNET.mat,sha256=xNJHqcmqSFtO1fFCL7Q1rhr-MVsjPLi6yMmXJLQSUTU,1679
124
146
  biotite/sequence/align/matrix_data/PAM90.mat,sha256=e-zxoVFQHxDoHT2_83SgzRnY88tT7_q8lg6Ikk3ioXs,2666
147
+ biotite/sequence/align/matrix_data/3Di.mat,sha256=vOp0H-cCTJC3puTPYU63e2ymGVvVNEdhnqzV4jQPJWo,2021
125
148
  biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=wt6Gkbx6KPazNoRXfedE-yXjH6Par0PXiVpFprenJGU,2122
126
149
  biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat,sha256=WvizmTK3QOPODABlz6_X8YT4KgvMZKy_0PkbOthDpjA,1850
127
150
  biotite/sequence/align/matrix_data/PAM200.mat,sha256=BUDVdPGRgVgxH552pwFA2WkO5QpM1gLLu6cgMiNhprs,2067
@@ -179,6 +202,8 @@ biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat,sha256=GUiQ63AMTP91d5poXh
179
202
  biotite/sequence/align/matrix_data/PAM190.mat,sha256=h-CbsySNQqW2YCS67ptA5CktzqP6hRqvud6dXXYnvVg,2067
180
203
  biotite/sequence/align/matrix_data/DAYHOFF.mat,sha256=qYkUgQ37EYTawAjc52vbPNJOfC9LYo_vmuX-Arsa2mg,2081
181
204
  biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=mPlyPQkz3RID3iT4XxYMDmyLfEya7sCV6t5BGdg665I,1850
205
+ biotite/sequence/align/matrix_data/PB.license,sha256=OkDCfXO06BfooLXYC3iF7LXXB_Uqqex1B2gjUEFdUZI,1091
206
+ biotite/sequence/align/matrix_data/PB.mat,sha256=1T1JxAckzd9oXRSXe09M6mYp-gjOhxeh0d8UMrt4dv4,1694
182
207
  biotite/sequence/align/matrix_data/PAM230.mat,sha256=kpdHawONOvHXHJgUnkPMFRikSyqjtU1Rucp_foRV6Jc,2068
183
208
  biotite/sequence/align/matrix_data/PAM350.mat,sha256=gGMAQ5oeI29qv2GkXcg4NBvueP0ylj1CBPj4J1W7Wkg,2669
184
209
  biotite/sequence/align/matrix_data/PAM150.mat,sha256=1Jbj7ITgahFFbjGbD3dS0WXrYL2HmSYj9_6ITsgNSWQ,2067
@@ -198,13 +223,13 @@ biotite/sequence/align/matrix_data/PAM340.mat,sha256=9rV5CU441SuU-MhTIOFBHbg2i6b
198
223
  biotite/sequence/align/matrix_data/PAM220.mat,sha256=58FW5l4TkLX5rUALdt0rrOXQWGqGlatGJjaZcN3HHYM,2067
199
224
  biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat,sha256=m3Es9ILTi5vCKAKjV40dLrJpZ8I0n7QaueKi0tNa1NI,1850
200
225
  biotite/sequence/align/matrix_data/PAM180.mat,sha256=mll_lIfL8oBzNlNcEhoh6ULv9lKG-HTBanUyJhzDO-U,2668
201
- biotite/sequence/graphics/alignment.py,sha256=WpTyskbya6x9ergwAKbTxQ-YxbxgfM2AwvPfw2E0FKs,39530
226
+ biotite/sequence/graphics/alignment.py,sha256=IvwMusuZ72eDPl-VDPQGmu1GMS3uo9xtPcvDgK8hsVQ,39368
202
227
  biotite/sequence/graphics/__init__.py,sha256=9o7zvUaCzuEhYzr1_dj1SID2EaQky2fSxVF7NkGoHC0,1152
203
- biotite/sequence/graphics/features.py,sha256=HzS434k_kKrd7hzCQlPeQH3_YQg3Y3fRx2k9n3LZ9FE,17295
228
+ biotite/sequence/graphics/features.py,sha256=SJ81q33R7ZJSaJiVMJoie2IjWXUydU0eWCy_E10vzdE,17297
204
229
  biotite/sequence/graphics/plasmid.py,sha256=_cP1pHLzWgS66UIhMSAuWD5JWP0SmBzWjPBJxHgR3Fc,26002
205
- biotite/sequence/graphics/dendrogram.py,sha256=11BkMkXQFCZY-OC2mTnhfiS53RLtH_Gz38tMYDAx-To,7592
206
- biotite/sequence/graphics/logo.py,sha256=6xhkspwu2Mbjo9aabw0gXgbcNqOdB9tw4IzPYMgzo0Y,3819
207
- biotite/sequence/graphics/colorschemes.py,sha256=nWibKN0L-NQkVCnj3Psx0SX6Zv1hpDZeb-NLTOZO3o0,4473
230
+ biotite/sequence/graphics/dendrogram.py,sha256=XKLFtUACA4rx0STLrQ8SCQAgK6EtFTxlnxNBEFT4Qw0,7670
231
+ biotite/sequence/graphics/logo.py,sha256=2VLuWyQpuwl6IyNhB39fgBmY2dT4Geh5fhpnwQ5TCNM,3692
232
+ biotite/sequence/graphics/colorschemes.py,sha256=GvmyxoEyYFOFwK2zM_DXM8RPecEDGhalOVinR7BdQ_Q,5517
208
233
  biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json,sha256=FTwFLJ049NH4CFS0B5OaXtmySkE6yiluenixoNSaZSM,785
209
234
  biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=C5imi4gVjtS0HVV6yQK3MOgNuOi1SPCnGDHiYqqbaU4,753
210
235
  biotite/sequence/graphics/color_schemes/wither.json,sha256=6dq-9koLqk6ec5WCLYzFRcnjmIYjjnLfnecZwMur3yw,842
@@ -218,105 +243,110 @@ biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=q9GXPg8OaeE6S
218
243
  biotite/sequence/graphics/color_schemes/jalview_prop_helix.json,sha256=mZrFbuArC56OOtdxZ0m3hQs35RTR0sCATgbaq5DfsYM,780
219
244
  biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=xG5qNN6Zov99pgEkna2jws7Vdp5cfYhKaUaPkyq9Nzw,248
220
245
  biotite/sequence/graphics/color_schemes/sunset.json,sha256=HnKftW6Mv52-fhqgIElQV0yW8cYMqtksPShG12zW7Is,842
221
- biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=43xTI6C5J1YDdH3gnlUgfOTeZm9gCwhy6K-YC9pRgdc,663
246
+ biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=nZRuvOdLmtSXZKNk2jZOuXV6utQAxa4oK7E36NqlYr8,676
222
247
  biotite/sequence/graphics/color_schemes/blossom.json,sha256=NneinRHISSkgrdCDtaxNCCaF6-9Ya_9PlKKKR6LweXc,843
223
248
  biotite/sequence/graphics/color_schemes/jalview_prop_strand.json,sha256=83GsLW_LOC4156kX4hVXUa4LUmoJm9FhOgyXrmXOR-E,781
224
249
  biotite/sequence/graphics/color_schemes/autumn.json,sha256=usp-Y70tk39LCJV64vi7t3wd0pcf7kOjEE8dZhAbryM,842
225
250
  biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=V0IJ-GsT8G8-J9CILWaiY3QkB35wYEq2kbWEDqYjm-4,701
226
251
  biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=xkNRgGj_ersYNx8eSDAnI1HQalGiAWHw97tO_pmfyNE,249
227
- biotite/sequence/phylo/tree.cpython-312-darwin.so,sha256=zjkxJBeDkPkZojgLZ46VoBpb-mll08bkAOc4BgsBFPA,282216
228
- biotite/sequence/phylo/upgma.cpython-312-darwin.so,sha256=MC1GJ6RTkN9khIz3jnDCv2YFuJDliuxRkyke7psMfbY,209224
252
+ biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=wuo5hCVuc_wR9a5AviU9BXRQC8XUb90VqJCsKcpq8pc,917
253
+ biotite/sequence/phylo/tree.cpython-312-darwin.so,sha256=jCcCf5gHXapPRVtIL90zezstj_zAfscc8iwxluJqTQk,282216
254
+ biotite/sequence/phylo/upgma.cpython-312-darwin.so,sha256=HUhZm01MgrKEEvYewlsb4ssdDeKpbyUrrImTp8Gf2iY,209224
229
255
  biotite/sequence/phylo/nj.pyx,sha256=s6hoo_7s3VFy-7Hgq9lKtUVXTZ-To8Dxwytk-ohfWYI,7281
230
256
  biotite/sequence/phylo/__init__.py,sha256=TW1CQqOa3JZYqidRy5XE8gA0HuzA8zo2Iouit3wSsBM,1261
231
257
  biotite/sequence/phylo/upgma.pyx,sha256=86QxGjj8fcGRhze7vZfqw8JLjLAZUevhkWDmzTy357E,5213
232
258
  biotite/sequence/phylo/tree.pyx,sha256=4e4Bhlm1qWY0Wvj6JqDE9jVwP6lEUmE8lIHEUmRNLwU,39206
233
- biotite/sequence/phylo/nj.cpython-312-darwin.so,sha256=Ysfv8iyBvITI3l-fD9uHStlFMN3Umn5hyDm-E5J3260,227336
234
- biotite/structure/repair.py,sha256=-1orK6q9tRNy36GWuS8_r4_goaGiaVtJy0I1VPCao2Q,6996
235
- biotite/structure/superimpose.py,sha256=MvPsab-ZRdeig_SoJH3XrrOY0VteTNCnLEKNSsar0_Y,25124
236
- biotite/structure/chains.py,sha256=I_A8JslWdBxi8cagoSGCfHddvHJ2WBSSe_WfovCwHxM,8827
237
- biotite/structure/box.py,sha256=6iGaGbxnsoIRt_mq727yLqU1txz7PRpA2H458Xk00Uk,18598
238
- biotite/structure/charges.cpython-312-darwin.so,sha256=0mHpWPmt_GuuOSokakZ9o_Bmr8GCozoQqklcA7HfCl8,281440
259
+ biotite/sequence/phylo/nj.cpython-312-darwin.so,sha256=x6u4nxjqQPQQOd9Ec9u9zZww0GkG7C-Byw-hVQaefeM,227336
260
+ biotite/structure/repair.py,sha256=EUvsV7EkJt-j7ruOnhZxhqdxfl7FMSKVzuQr7_xJE5g,6996
261
+ biotite/structure/superimpose.py,sha256=QiTG4N6g_Dov2PrNeXTb-MrqYkr-Th3GIFOJh-DzS5Y,25897
262
+ biotite/structure/chains.py,sha256=jvyZD9L55zwlnjpo_vBYFMtgQ1xSZnWxTpw3UApnbw4,8484
263
+ biotite/structure/box.py,sha256=n2x4AhNzrXMUn_kT8mKd1rr3_1aFlQdGi9GeGhwGaB0,18750
264
+ biotite/structure/charges.cpython-312-darwin.so,sha256=K3dwykC6bdCt7uFkVXTFqwOdcymEP21-RIXY0WJZhn8,281440
239
265
  biotite/structure/error.py,sha256=NI8oZfhO7oYWlcEIi025QZFD3Wjvwn6SvOn_RanrFT0,783
240
- biotite/structure/util.py,sha256=z-yxfc60EMJMPyEpTZ8cdl0LTb2zURrJm6xDYZUprF0,2200
241
- biotite/structure/segments.py,sha256=_yotEX4cr9WbxHdezLmoak5M3306PZZmPAxcO-tqSHU,5546
242
- biotite/structure/sequence.py,sha256=HLUaO32S_iDw2Ot1XEqQ7UtGDrxjCg30cCpzBqKpVPY,4246
243
- biotite/structure/sasa.pyx,sha256=fEUWuLtqjEmviPuL57lLuLdopndW-b7xtzvCr0vfQtk,12984
244
- biotite/structure/bonds.cpython-312-darwin.so,sha256=IIfok5HcKz7BcAPh9z6NfPaidaF-_OCJ3p7HoKXKC_s,560152
245
- biotite/structure/__init__.py,sha256=r2CR-UtCLVqbAygpKCri0pXD1FCe2M9wZSOi1Szp700,5324
246
- biotite/structure/mechanics.py,sha256=1qzDJZ1U1T_KsxwKioYjtMTy9cGYRirtxKD5AcsaJ3E,2588
247
- biotite/structure/sse.py,sha256=MUdyNSaDvxGi_gaY9bQjUSVNm-W8B1oinJ-UFV7slwk,11406
266
+ biotite/structure/util.py,sha256=PvmoUJbB_PpqnTX0osuAs6e5V8AmeKjAVy3mFFZH288,4959
267
+ biotite/structure/segments.py,sha256=_uiFncD6qeyZeJc_8NLUPXRDazwv66jfpdGw_EkO0WU,7596
268
+ biotite/structure/sequence.py,sha256=TlJiSH1AC9XETl3G24UkKl1FHfpWh1aPKsdxj4ZdiEs,4245
269
+ biotite/structure/sasa.pyx,sha256=z6D7JOR70-moE3nNcJ1-EWsjORbicMB7Zvpacs512Ec,13110
270
+ biotite/structure/bonds.cpython-312-darwin.so,sha256=7oJRhyya6Y7HxYhNzzg-5RETvOcQ0KGL8ImGtzop11E,560888
271
+ biotite/structure/tm.py,sha256=HtG56CZI9fk3zjML5f5XJXcE7oKVtYS1r-HGm2ugawo,20967
272
+ biotite/structure/__init__.py,sha256=dqOp3qC1UU3AP7cxNus2wmtHLB9vB_D17Lhmd9cRxAM,5488
273
+ biotite/structure/mechanics.py,sha256=A7590nMLbsfp_pHvLukca_YV0Q6VcrfDRW_p58D8ZNY,2587
274
+ biotite/structure/sse.py,sha256=OHXohnYi4ipBcSas9XTi9Pm8oNasM49Oxr7DBvYbe1U,11404
248
275
  biotite/structure/charges.pyx,sha256=RpCz4sVOiwmZeVTcMAapiWJFVBPAK0gAAiNoNZuxZWA,18822
249
- biotite/structure/density.py,sha256=BosyeB-0RGrANMpnq78A8cx_fYAOFnkcAJYxP8LKtZ0,4196
276
+ biotite/structure/density.py,sha256=wGZFgqkK6Kdv0OzmmWz8eXPEVxPSFShxINWOOdehaIg,4197
250
277
  biotite/structure/rdf.py,sha256=Yf9PoWqSpNK3QsWqnCnOUBGL8WwKGOakgZ0pxj5UOiA,8104
251
- biotite/structure/celllist.cpython-312-darwin.so,sha256=c-ySFyJbyB5eA1zJjv1NrK5O24U5w3bBq1chaXgLOLs,302960
252
- biotite/structure/transform.py,sha256=uz0t7-uv3QxJEd7oe8tpcnQPt5YfoFT6CLoruxEmvpA,19649
253
- biotite/structure/geometry.py,sha256=nYFJxpZvtujFK-9ERBRxAl1yQSikezGVz6ZAKjoa96U,25058
254
- biotite/structure/molecules.py,sha256=gkOSUTkIf1csP_6vDuxBhfJjIJWx-9xf_dW6dO7vFPY,15504
255
- biotite/structure/filter.py,sha256=X2Mj5_Z0_lk1LxuJudlztxuu7VkVF_ObtV_FCrXyHhg,17967
256
- biotite/structure/bonds.pyx,sha256=XYd9QtCtyqEZKGXkSQyt74oku9NVNufPmaC35BFLZX0,67996
257
- biotite/structure/atoms.py,sha256=y_dSNDNpn0RGNOphCQ4LRNvm0Pe9sBuqb7vtde4TOMs,47411
258
- biotite/structure/sasa.cpython-312-darwin.so,sha256=Kb5UF1_wLpjg2uTauoG5Xji9cwonRKjWOnp8rxFZAwc,264008
259
- biotite/structure/pseudoknots.py,sha256=hHxS4IOekR8ZqYFJvuXMexM1e1kaWmdqX18zfxAL4W0,22224
260
- biotite/structure/basepairs.py,sha256=2qxTgl6Q1zMjvZLa331hfQzbeMwrFzvSJYAfSETnwWo,49759
261
- biotite/structure/integrity.py,sha256=I2gcIgCoxWsC_adSsHYvbmvCz1aSeeXvIjt8uZWxYOM,6826
262
- biotite/structure/compare.py,sha256=vJLd5RKgMYrHCZiNExMfS1ceF4z8bRj9gazFkrUhIKk,9437
263
- biotite/structure/hbond.py,sha256=4y2FXeAXl7g2EDnwb1uDXFieGpZPQhnnkdATBechvW8,15218
264
- biotite/structure/dotbracket.py,sha256=8S1DHu1-PRgeMHERztfOKggneVEcoUdwd0QNtcH3qI4,6834
265
- biotite/structure/residues.py,sha256=nYkbDjGYK6pFNJ0mZ1Hyb2ocmIOWLLnLyGi1tuhXxXk,22454
266
- biotite/structure/celllist.pyx,sha256=PCK5hx4QyuRrernfP_ty-w2ZRG5Qyn5dmibRwdVKXsE,34461
267
- biotite/structure/io/trajfile.py,sha256=vQehU2tsUnvK_y5VyAyBpQX9ec-MQrFjFr7X0tYM8tI,25184
278
+ biotite/structure/celllist.cpython-312-darwin.so,sha256=DPp0CsnVt9ms4leGBs7UDM8qFMcnQNSb114H2Ju_zt4,319936
279
+ biotite/structure/transform.py,sha256=lOXSdDhJSgMvU1Rs3yNztEOZ3ph-ntb5O2lkmck6DKc,19683
280
+ biotite/structure/geometry.py,sha256=7FtPNJtTUn691xw6kbVk90s8a9rAd98zC-rKD23ikdU,23676
281
+ biotite/structure/molecules.py,sha256=Ar4NF3r3VQwirFprTMItIdHeluMSlpKOpRanZ0EEsWI,15291
282
+ biotite/structure/filter.py,sha256=cXeTVhK2lbbHq9KA-lvu2-TKENtHWoI1Qc2hpFxR71Q,17995
283
+ biotite/structure/bonds.pyx,sha256=xho8dzXn40-1Qt0vbikeZsqYTNWfV4WOd17p_UbU6Ow,69759
284
+ biotite/structure/rings.py,sha256=elgOyclErHer-LXeWjE-xVcV12FHVnZeBFw1ixiz_ns,11446
285
+ biotite/structure/atoms.py,sha256=aavGBW5xIQlzpX_dgY-1jD7Z4LRIuSLRZBhMiZt6iq0,50844
286
+ biotite/structure/sasa.cpython-312-darwin.so,sha256=QOdglEpoNpWFFqYZ3llxnDWTfWtz2d0N3a4ZF9L_kc8,264008
287
+ biotite/structure/pseudoknots.py,sha256=yuVUH1YWgrAVHMPsDI3h-4Z0MgnQLWHikqqaDkf57U4,22167
288
+ biotite/structure/basepairs.py,sha256=cS0G7iiCbgnqLs2smZjqsS_Ffw2H7cvHiz57T4MfVos,50013
289
+ biotite/structure/integrity.py,sha256=-HaFg2ckyVgSyHEyHqqNQ8fOwnhVzieYsMgyTCdzCFo,6763
290
+ biotite/structure/compare.py,sha256=irYBGnJHpcX_ETFUVNzlgHQpeGy_ihUGw7EEhWbCcDc,27353
291
+ biotite/structure/hbond.py,sha256=d1-aBL6f8fTTpxcNFDWDE06E7Vi4mHvdkpx6SNOuIUc,15219
292
+ biotite/structure/dotbracket.py,sha256=asg6T2hO_kpAjfrCfgXLFyGbF6g8QQZRHcYG8I5ewyo,7262
293
+ biotite/structure/residues.py,sha256=p1dBgy0SbIzEEebhR0AZJmCES_5iiXQA-URduMhFBow,22337
294
+ biotite/structure/celllist.pyx,sha256=duKCnVnyYoFElEEF9D1AXW3AKyvYQer4JGocIh93MRY,34588
295
+ biotite/structure/io/util.py,sha256=ivgxUZI4-Muv4cC6cLQdkYyk0TRhcnHi7J5DIX95BmI,1016
296
+ biotite/structure/io/trajfile.py,sha256=FQGtW5d1BRQ0fgNN9ObUADPvP9shO6Ls8zJvSsaSZ-M,25397
268
297
  biotite/structure/io/__init__.py,sha256=Lxmd8x6lpWz8nA0QhXmrgjvD_mOP0KyGmEzsVGzxXX4,998
269
- biotite/structure/io/general.py,sha256=GknBtXTMUsxhEiBrnB1dxW5ndFDHXnXT39xAlNAEr_4,8448
298
+ biotite/structure/io/general.py,sha256=S826akJeJkLBSgApssIDP4OgHecz5FPI3pl5tQU11C4,8452
270
299
  biotite/structure/io/dcd/__init__.py,sha256=tYiiTSmqDrsSgg_sZaoQgx2D8N9OeqlooxH46-4-iaQ,388
271
300
  biotite/structure/io/dcd/file.py,sha256=jaU81fvGl4WG0zXB1dBKTOtSvFF3fS0kxeNR-wwpXlY,2224
272
301
  biotite/structure/io/trr/__init__.py,sha256=5WNHMGiHNNzYdoiybE6Cs0bYAcznS5D3ABu7gHDJ__A,359
273
302
  biotite/structure/io/trr/file.py,sha256=2LjaLoKYfNgyQGSEfQ1TdZQqaPyrBh3irbJdmEKFTMI,1235
274
- biotite/structure/io/pdbx/encoding.cpython-312-darwin.so,sha256=up0gP-CtfM44ZRagEVXi-IcmJGTJ2SRFXQcL_GyAacM,1055392
275
- biotite/structure/io/pdbx/bcif.py,sha256=FD9F_K14wDLApgaHtJ8Ove6Gogpk_8MB4MbuvMJ0SlY,19820
276
- biotite/structure/io/pdbx/convert.py,sha256=Ih1BEJNUes-NzvNhSyi8bWOZn4vNWyT_BVvkUclRGqY,60208
277
- biotite/structure/io/pdbx/encoding.pyx,sha256=KMfSe853yRKRCKzBNOl-JWtep7_i7Z0rzFFu6Tct0vE,28725
278
- biotite/structure/io/pdbx/__init__.py,sha256=t8TqRYZdoHW_Jt68ZfXCZ0jmchLOuQbtYWRYwCocnEc,693
279
- biotite/structure/io/pdbx/cif.py,sha256=Lg9BjYiKLni76J3gqeKiwWgqA7tSVxXuja8kUiK0A8g,34455
280
- biotite/structure/io/pdbx/component.py,sha256=1ILksDKeb2TdRy3hW1-mSpno_zZEqT0sdpGlq_eY4U0,8026
303
+ biotite/structure/io/pdbx/encoding.cpython-312-darwin.so,sha256=8aUufCX92O0ta5PxXui9GOf8e52Z10caPGGAJ8IOGIY,1056128
304
+ biotite/structure/io/pdbx/bcif.py,sha256=k7WtZNB4U9czi00P1EpELZh8ty6cXRezll3yXdmiYOQ,21137
305
+ biotite/structure/io/pdbx/convert.py,sha256=HBeN_2wmX5yhNK3mptFOwxxiCs1lPEwYDHxgsRUNTAk,73394
306
+ biotite/structure/io/pdbx/encoding.pyx,sha256=ySywnGIvlDER4tcQzFMEgWkQJN_sMzB__MHbRQ0-wxc,31184
307
+ biotite/structure/io/pdbx/__init__.py,sha256=DlVXhrcuAF9A6Gim_JMccz-j8jDZuF2liDDA5cZxzx8,717
308
+ biotite/structure/io/pdbx/compress.py,sha256=2ut2xFL34f2dcWoYkNMmBMlrDzkqnvygxYLHL9JvuVs,11800
309
+ biotite/structure/io/pdbx/cif.py,sha256=nTlgtU78Mb7IjEebwW-XuOAgEz9z5rAjD7A32IaEQek,34868
310
+ biotite/structure/io/pdbx/component.py,sha256=xnVVqpbBAj8ED4SCYx1tF6jHXCRVK8NWHcoG-fH7QVg,8398
281
311
  biotite/structure/io/xtc/__init__.py,sha256=ipZjsWBil-h2ujdlEobyI2jGy5xsfRVOPAyCsYAJ7G4,357
282
312
  biotite/structure/io/xtc/file.py,sha256=PknO2-xzLgKTBW5Gig5Hv1HUZ4BIHRf2con2MLxEwNU,1235
283
313
  biotite/structure/io/pdbqt/convert.py,sha256=xF4m-tZG_4ykhZsknqUivFXbb6VqLXVLwmhi1AbOmuw,4008
284
314
  biotite/structure/io/pdbqt/__init__.py,sha256=a0_uIzhzCHdLBMdXhb5KEhbyRSURmqYXNwdjnJ6LAbY,441
285
- biotite/structure/io/pdbqt/file.py,sha256=aHMr0Oyf0oJbJ61AnFQlpISLCkt8gA3K15OEcd7gssM,26633
315
+ biotite/structure/io/pdbqt/file.py,sha256=Yvg_1g9EM7UHCoBKuzHSbWI61axEqg4_l8W3ZeI9aH4,26638
286
316
  biotite/structure/io/netcdf/__init__.py,sha256=SX8u2Eu99PXiP0kvHJ4mMCXTy68wV-ptcFdYn9DzEVk,350
287
317
  biotite/structure/io/netcdf/file.py,sha256=m5POlwjX0y28FjrK3lCglX9JD9r6iVuHJlQgJNZNStI,2192
288
318
  biotite/structure/io/gro/__init__.py,sha256=tEKrIlgahoBJXvrwtmZ1yVSOE8QW8GS6lk7MHwE2Cso,408
289
- biotite/structure/io/gro/file.py,sha256=vXNpc2aQVEggW8KwmkbouawWxaeOEKamDtYqS4kMhSo,12732
319
+ biotite/structure/io/gro/file.py,sha256=X5ubDEyNvbLbyzrsGsi9qylGanyvyzdC3t95KQu2xlE,12740
290
320
  biotite/structure/io/mol/header.py,sha256=AbYKcqGsnPiTf1nH-bbIg97A4RClPeJwFk4IleW5Duk,3425
291
- biotite/structure/io/mol/convert.py,sha256=sj7V7pdBlGQAAaXl7fAVf8JZC4Fd-z0gjne_0fYjyH4,3789
321
+ biotite/structure/io/mol/convert.py,sha256=jTw6O7S9nOcbF871Wwu7M_BHrOtBIe4PuqovdGL0-os,3789
292
322
  biotite/structure/io/mol/__init__.py,sha256=WvcNPDdf9W1zPyJ0tjTvGNxA83ht18uRQA8BF4s7Wno,582
293
- biotite/structure/io/mol/ctab.py,sha256=r6Ryx3ZBhlxm88PWVOWGwxrgPow95DLEAcIf8N2mkGU,13470
294
- biotite/structure/io/mol/mol.py,sha256=Eterau_ZfXbIkFHpDTvWzM2Yxxmem2hZn1tOQkXNuqM,5461
295
- biotite/structure/io/mol/sdf.py,sha256=6u2oSfY1BICf0TZ7qkOrMpfbbyYlf6QruoLBCipzKE8,32245
296
- biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so,sha256=6bNVRuHV6TYRthS5GVv06N4XyTT0nU9k6dM_AKis3-A,209760
297
- biotite/structure/io/pdb/convert.py,sha256=fzXkfm-SN9HswZ8srj0v15RRec9hq0BtB3gCgNIlk9s,10602
323
+ biotite/structure/io/mol/ctab.py,sha256=yWhR81XMuWKrO3DVFG6hRgnvjOYQ7ituGTW7EnfDchs,14120
324
+ biotite/structure/io/mol/mol.py,sha256=qp_yQ6tUIMmJNjzCqtle92mw_VJm4hkS0TRRJxAegS0,5461
325
+ biotite/structure/io/mol/sdf.py,sha256=09GRt6OGdsWH-ccgR8tXVvDM6pCUhnsZdPRv9Dx_QQU,32975
326
+ biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so,sha256=5ShYQzvmdWyG3wZM3_iocMb3bR6DyZ59ARb2kUKqF9A,209760
327
+ biotite/structure/io/pdb/convert.py,sha256=uiTLwWkXvc1VpGaHe-yRon4DpM0ZQh0ngEyU0whdvJU,10720
298
328
  biotite/structure/io/pdb/__init__.py,sha256=5NbUMDRKIe7jJ2ByRHpMhJzY_vIasjSgO63Zxrpq8BM,733
299
- biotite/structure/io/pdb/file.py,sha256=Ox_ufeO9B78c3ZS06Dpb0I-aYXftEhPN7T3oXnW_uW4,47896
329
+ biotite/structure/io/pdb/file.py,sha256=27FCuvPzidmwf5tSRAtXfUTUbptKu-IHRvi-67Ld40E,50354
300
330
  biotite/structure/io/pdb/hybrid36.pyx,sha256=BKV7oh0xrrjqVrkhTn7KEolon57fUhlG4Yf0Tf22wuU,8036
301
- biotite/structure/info/misc.py,sha256=GIdFhRtzWInhynVXNQwQpJszowmZ_0Jdqh9R706CB_Y,3512
331
+ biotite/structure/alphabet/pb.py,sha256=ksJKkYj4y3jzfvgFUF7g99W981RvH46RXKe3RW5fkR8,5994
332
+ biotite/structure/alphabet/unkerasify.py,sha256=P-EY9gbWglJHPF9xp_SivF67bIQE73403htyJMu4-nE,3301
333
+ biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
334
+ biotite/structure/alphabet/__init__.py,sha256=tUAybrggScCsom1b_EXQ63pA88L_PmQpcYS-MnqKavM,928
335
+ biotite/structure/alphabet/encoder.py,sha256=2BWLMdGBr2bHw09vMhbzPztMKSnVt8UhUf85g5M1xnY,11383
336
+ biotite/structure/alphabet/i3d.py,sha256=SLJkVWiKl-EXMcsv8gcKF4zujoR5L8sQRyo9fnrETPM,3009
337
+ biotite/structure/alphabet/pb.license,sha256=OkDCfXO06BfooLXYC3iF7LXXB_Uqqex1B2gjUEFdUZI,1091
338
+ biotite/structure/alphabet/layers.py,sha256=Y1Y8G2LqqzC7M0kNUv8k-EXTVVKGLnPDJKdRrVEf3H4,2087
339
+ biotite/structure/info/components.bcif,sha256=ClKq5vYpizeAB7JSaz-ZnZ_rby7mVVn3MS5bv8muoqU,59077222
340
+ biotite/structure/info/misc.py,sha256=hAvTh8KdkPGsh9Y2mGxDRRt9ZDPgCoAGLHr1smCANlg,3428
302
341
  biotite/structure/info/atom_masses.json,sha256=WME4ezDPy-HrEIhxkOGxcmIMdgxf1x7e_xwBkFRdTsY,2383
303
- biotite/structure/info/__init__.py,sha256=SMJ93QhJitkvDwTra_MjSsGEuU1V0-PoQ1Kwq7OuRvI,679
304
- biotite/structure/info/groups.py,sha256=AVDuw4OAwxnUXx6xmCVg0IrXVX9ESKWE4rKtDNYICEY,1983
305
- biotite/structure/info/radii.py,sha256=sNbJZz1AU9DBkImwRwwtWZEH_A3CFow5Hsx1D-U3_Bw,5610
306
- biotite/structure/info/standardize.py,sha256=mF8N112nB5LLo6fZNOxlviZzccDD9ouFKefhR4NhSX0,7713
307
- biotite/structure/info/bonds.py,sha256=Nv-OKSjBblrGfOsYVYbE6uDs18nIvXr8l-g-7YLmXtM,4501
308
- biotite/structure/info/masses.py,sha256=kIMc-_NdEushTskuTszdd9FdrPUeqEO9EczOA9sAT7g,4483
309
- biotite/structure/info/atoms.py,sha256=vBtjGVSLjnh69nFJYJ3s9Li_cnyBDTTijTiD77CLUbc,2622
310
- biotite/structure/info/ccd.py,sha256=ZMaICtIrkUMLZ6Lvmo5riML1H9JETJqulk6ovJlafMk,3002
311
- biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
312
- biotite/structure/info/ccd/amino_acids.txt,sha256=RUyolncqbsplkY2hlajjOSciigyZEYL1GCx_f63jXx4,6669
313
- biotite/structure/info/ccd/README.rst,sha256=sfFRGesjpATIp5S8kiEV7cr-Jb51fWLGT4KypmzsoPM,342
314
- biotite/structure/info/ccd/carbohydrates.txt,sha256=bh5Vc84tETB-FKUm6H1brBN6zM5a2zzzwuWyb0MXaLA,4544
315
- biotite/structure/info/ccd/nucleotides.txt,sha256=Q7Zjz45BAO6c2QDAgvYdKtWAqmjQxy2NQ6r-bsZRqv4,3136
342
+ biotite/structure/info/__init__.py,sha256=k08kdsKlrxaVQ9x8MjEXoVFaXl1J8OcpLf6iG7dUgOY,698
343
+ biotite/structure/info/groups.py,sha256=f3kSytTRMgP57zVd_Qa8Yddvu-ZUfeVcVTxmRCmQBhY,3184
344
+ biotite/structure/info/radii.py,sha256=PGpl5WoaFBzAktxNodzb_mCz8jp0AwW3GNXk9jKN3Ho,7281
345
+ biotite/structure/info/standardize.py,sha256=UEvlRB9XDPO0S4usROlSl51DjuadrTslFBp2jqcMqEw,7739
346
+ biotite/structure/info/bonds.py,sha256=6pXAZPeKPL2pwFi5fhSyTwh_gd5fToIgvwguGffrE-0,4644
347
+ biotite/structure/info/masses.py,sha256=HOdaeFZkd5LSrl00025S1MwXT7im8V-s0bU54tr1te8,4555
348
+ biotite/structure/info/atoms.py,sha256=9uytsei3Y4zxExhnda4y4vuxmIO6gOndJYeXroC86yU,3010
349
+ biotite/structure/info/ccd.py,sha256=A3-YomYJS3bbAfntLpvwLkmCgQFjR2suMwFnGQsgPXg,5851
316
350
  biotite/structure/graphics/__init__.py,sha256=YwMT8-c2DjrkcwyK6jPeDtAKxQda0OhElnwk8J0y3Hc,353
317
351
  biotite/structure/graphics/rna.py,sha256=w7zFMKo2ZZ4n60SkbkupEXPxe3-KUNa261PF784ry8k,12016
318
352
  biotite/structure/graphics/atoms.py,sha256=988_URX4hfTE3oBOYgAvZruOrzogMPcFKiTT5RJL01E,8116
319
- biotite-1.0.1.dist-info/RECORD,,
320
- biotite-1.0.1.dist-info/WHEEL,sha256=RuH0OSSkE2iFFCiqpmSxZqGj3WHRpMHdUp0bulkW7xo,105
321
- biotite-1.0.1.dist-info/METADATA,sha256=lnwl1IjHDLJ5EVhHYSUQplx3-4Ql4gbbezrkspTCRK8,7159
322
- biotite-1.0.1.dist-info/licenses/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
@@ -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``.