biotite 1.5.0__cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.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 (354) hide show
  1. biotite/__init__.py +18 -0
  2. biotite/application/__init__.py +69 -0
  3. biotite/application/application.py +276 -0
  4. biotite/application/autodock/__init__.py +12 -0
  5. biotite/application/autodock/app.py +500 -0
  6. biotite/application/blast/__init__.py +14 -0
  7. biotite/application/blast/alignment.py +92 -0
  8. biotite/application/blast/webapp.py +428 -0
  9. biotite/application/clustalo/__init__.py +12 -0
  10. biotite/application/clustalo/app.py +223 -0
  11. biotite/application/dssp/__init__.py +12 -0
  12. biotite/application/dssp/app.py +216 -0
  13. biotite/application/localapp.py +342 -0
  14. biotite/application/mafft/__init__.py +12 -0
  15. biotite/application/mafft/app.py +116 -0
  16. biotite/application/msaapp.py +363 -0
  17. biotite/application/muscle/__init__.py +13 -0
  18. biotite/application/muscle/app3.py +227 -0
  19. biotite/application/muscle/app5.py +163 -0
  20. biotite/application/sra/__init__.py +18 -0
  21. biotite/application/sra/app.py +447 -0
  22. biotite/application/tantan/__init__.py +12 -0
  23. biotite/application/tantan/app.py +199 -0
  24. biotite/application/util.py +77 -0
  25. biotite/application/viennarna/__init__.py +18 -0
  26. biotite/application/viennarna/rnaalifold.py +310 -0
  27. biotite/application/viennarna/rnafold.py +254 -0
  28. biotite/application/viennarna/rnaplot.py +208 -0
  29. biotite/application/viennarna/util.py +77 -0
  30. biotite/application/webapp.py +76 -0
  31. biotite/copyable.py +71 -0
  32. biotite/database/__init__.py +23 -0
  33. biotite/database/afdb/__init__.py +12 -0
  34. biotite/database/afdb/download.py +197 -0
  35. biotite/database/entrez/__init__.py +15 -0
  36. biotite/database/entrez/check.py +60 -0
  37. biotite/database/entrez/dbnames.py +101 -0
  38. biotite/database/entrez/download.py +228 -0
  39. biotite/database/entrez/key.py +44 -0
  40. biotite/database/entrez/query.py +263 -0
  41. biotite/database/error.py +16 -0
  42. biotite/database/pubchem/__init__.py +21 -0
  43. biotite/database/pubchem/download.py +258 -0
  44. biotite/database/pubchem/error.py +30 -0
  45. biotite/database/pubchem/query.py +819 -0
  46. biotite/database/pubchem/throttle.py +98 -0
  47. biotite/database/rcsb/__init__.py +13 -0
  48. biotite/database/rcsb/download.py +161 -0
  49. biotite/database/rcsb/query.py +963 -0
  50. biotite/database/uniprot/__init__.py +13 -0
  51. biotite/database/uniprot/check.py +40 -0
  52. biotite/database/uniprot/download.py +126 -0
  53. biotite/database/uniprot/query.py +292 -0
  54. biotite/file.py +244 -0
  55. biotite/interface/__init__.py +19 -0
  56. biotite/interface/openmm/__init__.py +20 -0
  57. biotite/interface/openmm/state.py +93 -0
  58. biotite/interface/openmm/system.py +227 -0
  59. biotite/interface/pymol/__init__.py +201 -0
  60. biotite/interface/pymol/cgo.py +346 -0
  61. biotite/interface/pymol/convert.py +185 -0
  62. biotite/interface/pymol/display.py +267 -0
  63. biotite/interface/pymol/object.py +1228 -0
  64. biotite/interface/pymol/shapes.py +178 -0
  65. biotite/interface/pymol/startup.py +169 -0
  66. biotite/interface/rdkit/__init__.py +19 -0
  67. biotite/interface/rdkit/mol.py +490 -0
  68. biotite/interface/version.py +94 -0
  69. biotite/interface/warning.py +19 -0
  70. biotite/sequence/__init__.py +84 -0
  71. biotite/sequence/align/__init__.py +199 -0
  72. biotite/sequence/align/alignment.py +702 -0
  73. biotite/sequence/align/banded.cpython-312-x86_64-linux-gnu.so +0 -0
  74. biotite/sequence/align/banded.pyx +652 -0
  75. biotite/sequence/align/buckets.py +71 -0
  76. biotite/sequence/align/cigar.py +425 -0
  77. biotite/sequence/align/kmeralphabet.cpython-312-x86_64-linux-gnu.so +0 -0
  78. biotite/sequence/align/kmeralphabet.pyx +595 -0
  79. biotite/sequence/align/kmersimilarity.cpython-312-x86_64-linux-gnu.so +0 -0
  80. biotite/sequence/align/kmersimilarity.pyx +233 -0
  81. biotite/sequence/align/kmertable.cpython-312-x86_64-linux-gnu.so +0 -0
  82. biotite/sequence/align/kmertable.pyx +3411 -0
  83. biotite/sequence/align/localgapped.cpython-312-x86_64-linux-gnu.so +0 -0
  84. biotite/sequence/align/localgapped.pyx +892 -0
  85. biotite/sequence/align/localungapped.cpython-312-x86_64-linux-gnu.so +0 -0
  86. biotite/sequence/align/localungapped.pyx +279 -0
  87. biotite/sequence/align/matrix.py +631 -0
  88. biotite/sequence/align/matrix_data/3Di.mat +24 -0
  89. biotite/sequence/align/matrix_data/BLOSUM100.mat +31 -0
  90. biotite/sequence/align/matrix_data/BLOSUM30.mat +31 -0
  91. biotite/sequence/align/matrix_data/BLOSUM35.mat +31 -0
  92. biotite/sequence/align/matrix_data/BLOSUM40.mat +31 -0
  93. biotite/sequence/align/matrix_data/BLOSUM45.mat +31 -0
  94. biotite/sequence/align/matrix_data/BLOSUM50.mat +31 -0
  95. biotite/sequence/align/matrix_data/BLOSUM50_13p.mat +25 -0
  96. biotite/sequence/align/matrix_data/BLOSUM50_14.3.mat +25 -0
  97. biotite/sequence/align/matrix_data/BLOSUM50_5.0.mat +25 -0
  98. biotite/sequence/align/matrix_data/BLOSUM55.mat +31 -0
  99. biotite/sequence/align/matrix_data/BLOSUM60.mat +31 -0
  100. biotite/sequence/align/matrix_data/BLOSUM62.mat +31 -0
  101. biotite/sequence/align/matrix_data/BLOSUM62_13p.mat +25 -0
  102. biotite/sequence/align/matrix_data/BLOSUM62_14.3.mat +25 -0
  103. biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat +25 -0
  104. biotite/sequence/align/matrix_data/BLOSUM65.mat +31 -0
  105. biotite/sequence/align/matrix_data/BLOSUM70.mat +31 -0
  106. biotite/sequence/align/matrix_data/BLOSUM75.mat +31 -0
  107. biotite/sequence/align/matrix_data/BLOSUM80.mat +31 -0
  108. biotite/sequence/align/matrix_data/BLOSUM85.mat +31 -0
  109. biotite/sequence/align/matrix_data/BLOSUM90.mat +31 -0
  110. biotite/sequence/align/matrix_data/BLOSUMN.mat +31 -0
  111. biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat +25 -0
  112. biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat +25 -0
  113. biotite/sequence/align/matrix_data/CorBLOSUM57_14.3.mat +25 -0
  114. biotite/sequence/align/matrix_data/CorBLOSUM61_5.0.mat +25 -0
  115. biotite/sequence/align/matrix_data/CorBLOSUM66_13p.mat +25 -0
  116. biotite/sequence/align/matrix_data/CorBLOSUM67_14.3.mat +25 -0
  117. biotite/sequence/align/matrix_data/DAYHOFF.mat +32 -0
  118. biotite/sequence/align/matrix_data/GONNET.mat +26 -0
  119. biotite/sequence/align/matrix_data/IDENTITY.mat +25 -0
  120. biotite/sequence/align/matrix_data/MATCH.mat +25 -0
  121. biotite/sequence/align/matrix_data/NUC.mat +25 -0
  122. biotite/sequence/align/matrix_data/PAM10.mat +34 -0
  123. biotite/sequence/align/matrix_data/PAM100.mat +34 -0
  124. biotite/sequence/align/matrix_data/PAM110.mat +34 -0
  125. biotite/sequence/align/matrix_data/PAM120.mat +34 -0
  126. biotite/sequence/align/matrix_data/PAM130.mat +34 -0
  127. biotite/sequence/align/matrix_data/PAM140.mat +34 -0
  128. biotite/sequence/align/matrix_data/PAM150.mat +34 -0
  129. biotite/sequence/align/matrix_data/PAM160.mat +34 -0
  130. biotite/sequence/align/matrix_data/PAM170.mat +34 -0
  131. biotite/sequence/align/matrix_data/PAM180.mat +34 -0
  132. biotite/sequence/align/matrix_data/PAM190.mat +34 -0
  133. biotite/sequence/align/matrix_data/PAM20.mat +34 -0
  134. biotite/sequence/align/matrix_data/PAM200.mat +34 -0
  135. biotite/sequence/align/matrix_data/PAM210.mat +34 -0
  136. biotite/sequence/align/matrix_data/PAM220.mat +34 -0
  137. biotite/sequence/align/matrix_data/PAM230.mat +34 -0
  138. biotite/sequence/align/matrix_data/PAM240.mat +34 -0
  139. biotite/sequence/align/matrix_data/PAM250.mat +34 -0
  140. biotite/sequence/align/matrix_data/PAM260.mat +34 -0
  141. biotite/sequence/align/matrix_data/PAM270.mat +34 -0
  142. biotite/sequence/align/matrix_data/PAM280.mat +34 -0
  143. biotite/sequence/align/matrix_data/PAM290.mat +34 -0
  144. biotite/sequence/align/matrix_data/PAM30.mat +34 -0
  145. biotite/sequence/align/matrix_data/PAM300.mat +34 -0
  146. biotite/sequence/align/matrix_data/PAM310.mat +34 -0
  147. biotite/sequence/align/matrix_data/PAM320.mat +34 -0
  148. biotite/sequence/align/matrix_data/PAM330.mat +34 -0
  149. biotite/sequence/align/matrix_data/PAM340.mat +34 -0
  150. biotite/sequence/align/matrix_data/PAM350.mat +34 -0
  151. biotite/sequence/align/matrix_data/PAM360.mat +34 -0
  152. biotite/sequence/align/matrix_data/PAM370.mat +34 -0
  153. biotite/sequence/align/matrix_data/PAM380.mat +34 -0
  154. biotite/sequence/align/matrix_data/PAM390.mat +34 -0
  155. biotite/sequence/align/matrix_data/PAM40.mat +34 -0
  156. biotite/sequence/align/matrix_data/PAM400.mat +34 -0
  157. biotite/sequence/align/matrix_data/PAM410.mat +34 -0
  158. biotite/sequence/align/matrix_data/PAM420.mat +34 -0
  159. biotite/sequence/align/matrix_data/PAM430.mat +34 -0
  160. biotite/sequence/align/matrix_data/PAM440.mat +34 -0
  161. biotite/sequence/align/matrix_data/PAM450.mat +34 -0
  162. biotite/sequence/align/matrix_data/PAM460.mat +34 -0
  163. biotite/sequence/align/matrix_data/PAM470.mat +34 -0
  164. biotite/sequence/align/matrix_data/PAM480.mat +34 -0
  165. biotite/sequence/align/matrix_data/PAM490.mat +34 -0
  166. biotite/sequence/align/matrix_data/PAM50.mat +34 -0
  167. biotite/sequence/align/matrix_data/PAM500.mat +34 -0
  168. biotite/sequence/align/matrix_data/PAM60.mat +34 -0
  169. biotite/sequence/align/matrix_data/PAM70.mat +34 -0
  170. biotite/sequence/align/matrix_data/PAM80.mat +34 -0
  171. biotite/sequence/align/matrix_data/PAM90.mat +34 -0
  172. biotite/sequence/align/matrix_data/PB.license +21 -0
  173. biotite/sequence/align/matrix_data/PB.mat +18 -0
  174. biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat +25 -0
  175. biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat +25 -0
  176. biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat +25 -0
  177. biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat +25 -0
  178. biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat +25 -0
  179. biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat +25 -0
  180. biotite/sequence/align/multiple.cpython-312-x86_64-linux-gnu.so +0 -0
  181. biotite/sequence/align/multiple.pyx +619 -0
  182. biotite/sequence/align/pairwise.cpython-312-x86_64-linux-gnu.so +0 -0
  183. biotite/sequence/align/pairwise.pyx +585 -0
  184. biotite/sequence/align/permutation.cpython-312-x86_64-linux-gnu.so +0 -0
  185. biotite/sequence/align/permutation.pyx +313 -0
  186. biotite/sequence/align/primes.txt +821 -0
  187. biotite/sequence/align/selector.cpython-312-x86_64-linux-gnu.so +0 -0
  188. biotite/sequence/align/selector.pyx +954 -0
  189. biotite/sequence/align/statistics.py +264 -0
  190. biotite/sequence/align/tracetable.cpython-312-x86_64-linux-gnu.so +0 -0
  191. biotite/sequence/align/tracetable.pxd +64 -0
  192. biotite/sequence/align/tracetable.pyx +370 -0
  193. biotite/sequence/alphabet.py +555 -0
  194. biotite/sequence/annotation.py +836 -0
  195. biotite/sequence/codec.cpython-312-x86_64-linux-gnu.so +0 -0
  196. biotite/sequence/codec.pyx +155 -0
  197. biotite/sequence/codon.py +476 -0
  198. biotite/sequence/codon_tables.txt +202 -0
  199. biotite/sequence/graphics/__init__.py +33 -0
  200. biotite/sequence/graphics/alignment.py +1101 -0
  201. biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
  202. biotite/sequence/graphics/color_schemes/autumn.json +51 -0
  203. biotite/sequence/graphics/color_schemes/blossom.json +51 -0
  204. biotite/sequence/graphics/color_schemes/clustalx_dna.json +11 -0
  205. biotite/sequence/graphics/color_schemes/clustalx_protein.json +28 -0
  206. biotite/sequence/graphics/color_schemes/flower.json +51 -0
  207. biotite/sequence/graphics/color_schemes/jalview_buried.json +31 -0
  208. biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json +31 -0
  209. biotite/sequence/graphics/color_schemes/jalview_prop_helix.json +31 -0
  210. biotite/sequence/graphics/color_schemes/jalview_prop_strand.json +31 -0
  211. biotite/sequence/graphics/color_schemes/jalview_prop_turn.json +31 -0
  212. biotite/sequence/graphics/color_schemes/jalview_taylor.json +28 -0
  213. biotite/sequence/graphics/color_schemes/jalview_zappo.json +28 -0
  214. biotite/sequence/graphics/color_schemes/ocean.json +51 -0
  215. biotite/sequence/graphics/color_schemes/pb_flower.json +40 -0
  216. biotite/sequence/graphics/color_schemes/rainbow_dna.json +11 -0
  217. biotite/sequence/graphics/color_schemes/rainbow_protein.json +30 -0
  218. biotite/sequence/graphics/color_schemes/spring.json +51 -0
  219. biotite/sequence/graphics/color_schemes/sunset.json +51 -0
  220. biotite/sequence/graphics/color_schemes/wither.json +51 -0
  221. biotite/sequence/graphics/colorschemes.py +170 -0
  222. biotite/sequence/graphics/dendrogram.py +231 -0
  223. biotite/sequence/graphics/features.py +544 -0
  224. biotite/sequence/graphics/logo.py +102 -0
  225. biotite/sequence/graphics/plasmid.py +712 -0
  226. biotite/sequence/io/__init__.py +12 -0
  227. biotite/sequence/io/fasta/__init__.py +22 -0
  228. biotite/sequence/io/fasta/convert.py +283 -0
  229. biotite/sequence/io/fasta/file.py +265 -0
  230. biotite/sequence/io/fastq/__init__.py +19 -0
  231. biotite/sequence/io/fastq/convert.py +117 -0
  232. biotite/sequence/io/fastq/file.py +507 -0
  233. biotite/sequence/io/genbank/__init__.py +17 -0
  234. biotite/sequence/io/genbank/annotation.py +269 -0
  235. biotite/sequence/io/genbank/file.py +573 -0
  236. biotite/sequence/io/genbank/metadata.py +336 -0
  237. biotite/sequence/io/genbank/sequence.py +173 -0
  238. biotite/sequence/io/general.py +201 -0
  239. biotite/sequence/io/gff/__init__.py +26 -0
  240. biotite/sequence/io/gff/convert.py +128 -0
  241. biotite/sequence/io/gff/file.py +449 -0
  242. biotite/sequence/phylo/__init__.py +36 -0
  243. biotite/sequence/phylo/nj.cpython-312-x86_64-linux-gnu.so +0 -0
  244. biotite/sequence/phylo/nj.pyx +221 -0
  245. biotite/sequence/phylo/tree.cpython-312-x86_64-linux-gnu.so +0 -0
  246. biotite/sequence/phylo/tree.pyx +1169 -0
  247. biotite/sequence/phylo/upgma.cpython-312-x86_64-linux-gnu.so +0 -0
  248. biotite/sequence/phylo/upgma.pyx +164 -0
  249. biotite/sequence/profile.py +561 -0
  250. biotite/sequence/search.py +117 -0
  251. biotite/sequence/seqtypes.py +720 -0
  252. biotite/sequence/sequence.py +373 -0
  253. biotite/setup_ccd.py +197 -0
  254. biotite/structure/__init__.py +135 -0
  255. biotite/structure/alphabet/__init__.py +25 -0
  256. biotite/structure/alphabet/encoder.py +332 -0
  257. biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
  258. biotite/structure/alphabet/i3d.py +109 -0
  259. biotite/structure/alphabet/layers.py +86 -0
  260. biotite/structure/alphabet/pb.license +21 -0
  261. biotite/structure/alphabet/pb.py +170 -0
  262. biotite/structure/alphabet/unkerasify.py +128 -0
  263. biotite/structure/atoms.py +1562 -0
  264. biotite/structure/basepairs.py +1403 -0
  265. biotite/structure/bonds.cpython-312-x86_64-linux-gnu.so +0 -0
  266. biotite/structure/bonds.pyx +2036 -0
  267. biotite/structure/box.py +724 -0
  268. biotite/structure/celllist.cpython-312-x86_64-linux-gnu.so +0 -0
  269. biotite/structure/celllist.pyx +864 -0
  270. biotite/structure/chains.py +310 -0
  271. biotite/structure/charges.cpython-312-x86_64-linux-gnu.so +0 -0
  272. biotite/structure/charges.pyx +520 -0
  273. biotite/structure/compare.py +683 -0
  274. biotite/structure/density.py +109 -0
  275. biotite/structure/dotbracket.py +213 -0
  276. biotite/structure/error.py +39 -0
  277. biotite/structure/filter.py +591 -0
  278. biotite/structure/geometry.py +817 -0
  279. biotite/structure/graphics/__init__.py +13 -0
  280. biotite/structure/graphics/atoms.py +243 -0
  281. biotite/structure/graphics/rna.py +298 -0
  282. biotite/structure/hbond.py +425 -0
  283. biotite/structure/info/__init__.py +24 -0
  284. biotite/structure/info/atom_masses.json +121 -0
  285. biotite/structure/info/atoms.py +98 -0
  286. biotite/structure/info/bonds.py +149 -0
  287. biotite/structure/info/ccd.py +200 -0
  288. biotite/structure/info/components.bcif +0 -0
  289. biotite/structure/info/groups.py +128 -0
  290. biotite/structure/info/masses.py +121 -0
  291. biotite/structure/info/misc.py +137 -0
  292. biotite/structure/info/radii.py +267 -0
  293. biotite/structure/info/standardize.py +185 -0
  294. biotite/structure/integrity.py +213 -0
  295. biotite/structure/io/__init__.py +29 -0
  296. biotite/structure/io/dcd/__init__.py +13 -0
  297. biotite/structure/io/dcd/file.py +67 -0
  298. biotite/structure/io/general.py +243 -0
  299. biotite/structure/io/gro/__init__.py +14 -0
  300. biotite/structure/io/gro/file.py +343 -0
  301. biotite/structure/io/mol/__init__.py +20 -0
  302. biotite/structure/io/mol/convert.py +112 -0
  303. biotite/structure/io/mol/ctab.py +420 -0
  304. biotite/structure/io/mol/header.py +120 -0
  305. biotite/structure/io/mol/mol.py +149 -0
  306. biotite/structure/io/mol/sdf.py +940 -0
  307. biotite/structure/io/netcdf/__init__.py +13 -0
  308. biotite/structure/io/netcdf/file.py +64 -0
  309. biotite/structure/io/pdb/__init__.py +20 -0
  310. biotite/structure/io/pdb/convert.py +389 -0
  311. biotite/structure/io/pdb/file.py +1380 -0
  312. biotite/structure/io/pdb/hybrid36.cpython-312-x86_64-linux-gnu.so +0 -0
  313. biotite/structure/io/pdb/hybrid36.pyx +242 -0
  314. biotite/structure/io/pdbqt/__init__.py +15 -0
  315. biotite/structure/io/pdbqt/convert.py +113 -0
  316. biotite/structure/io/pdbqt/file.py +688 -0
  317. biotite/structure/io/pdbx/__init__.py +23 -0
  318. biotite/structure/io/pdbx/bcif.py +674 -0
  319. biotite/structure/io/pdbx/cif.py +1091 -0
  320. biotite/structure/io/pdbx/component.py +251 -0
  321. biotite/structure/io/pdbx/compress.py +362 -0
  322. biotite/structure/io/pdbx/convert.py +2113 -0
  323. biotite/structure/io/pdbx/encoding.cpython-312-x86_64-linux-gnu.so +0 -0
  324. biotite/structure/io/pdbx/encoding.pyx +1078 -0
  325. biotite/structure/io/trajfile.py +696 -0
  326. biotite/structure/io/trr/__init__.py +13 -0
  327. biotite/structure/io/trr/file.py +43 -0
  328. biotite/structure/io/util.py +38 -0
  329. biotite/structure/io/xtc/__init__.py +13 -0
  330. biotite/structure/io/xtc/file.py +43 -0
  331. biotite/structure/mechanics.py +72 -0
  332. biotite/structure/molecules.py +337 -0
  333. biotite/structure/pseudoknots.py +622 -0
  334. biotite/structure/rdf.py +245 -0
  335. biotite/structure/repair.py +302 -0
  336. biotite/structure/residues.py +716 -0
  337. biotite/structure/rings.py +451 -0
  338. biotite/structure/sasa.cpython-312-x86_64-linux-gnu.so +0 -0
  339. biotite/structure/sasa.pyx +322 -0
  340. biotite/structure/segments.py +328 -0
  341. biotite/structure/sequence.py +110 -0
  342. biotite/structure/spacegroups.json +1567 -0
  343. biotite/structure/spacegroups.license +26 -0
  344. biotite/structure/sse.py +306 -0
  345. biotite/structure/superimpose.py +511 -0
  346. biotite/structure/tm.py +581 -0
  347. biotite/structure/transform.py +736 -0
  348. biotite/structure/util.py +160 -0
  349. biotite/version.py +34 -0
  350. biotite/visualize.py +375 -0
  351. biotite-1.5.0.dist-info/METADATA +162 -0
  352. biotite-1.5.0.dist-info/RECORD +354 -0
  353. biotite-1.5.0.dist-info/WHEEL +6 -0
  354. biotite-1.5.0.dist-info/licenses/LICENSE.rst +30 -0
@@ -0,0 +1,162 @@
1
+ Metadata-Version: 2.4
2
+ Name: biotite
3
+ Version: 1.5.0
4
+ Summary: A comprehensive library for computational molecular biology
5
+ Project-URL: homepage, https://www.biotite-python.org
6
+ Project-URL: repository, https://github.com/biotite-dev/biotite
7
+ Project-URL: documentation, https://www.biotite-python.org
8
+ Author: The Biotite contributors
9
+ License-Expression: BSD-3-Clause
10
+ License-File: LICENSE.rst
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Natural Language :: English
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: biotraj<2.0,>=1.0
23
+ Requires-Dist: msgpack>=0.5.6
24
+ Requires-Dist: networkx>=2.0
25
+ Requires-Dist: numpy>=1.25
26
+ Requires-Dist: packaging>=24.0
27
+ Requires-Dist: requests>=2.12
28
+ Provides-Extra: lint
29
+ Requires-Dist: numpydoc==1.8.0; extra == 'lint'
30
+ Requires-Dist: ruff==0.9.7; extra == 'lint'
31
+ Provides-Extra: test
32
+ Requires-Dist: pytest; extra == 'test'
33
+ Requires-Dist: pytest-codspeed; extra == 'test'
34
+ Description-Content-Type: text/x-rst
35
+
36
+ .. image:: https://img.shields.io/pypi/v/biotite.svg
37
+ :target: https://pypi.python.org/pypi/biotite
38
+ :alt: Biotite at PyPI
39
+ .. image:: https://img.shields.io/pypi/pyversions/biotite.svg
40
+ :alt: Python version
41
+ .. image:: https://github.com/biotite-dev/biotite/actions/workflows/test_and_deploy.yml/badge.svg
42
+ :target: https://github.com/biotite-dev/biotite/actions/workflows/test_and_deploy.yml
43
+ :alt: Test status
44
+
45
+ .. image:: https://www.biotite-python.org/_static/assets/general/biotite_logo_m.png
46
+ :alt: The Biotite Project
47
+
48
+ Biotite project
49
+ ===============
50
+
51
+ *Biotite* is your Swiss army knife for bioinformatics.
52
+ Whether you want to identify homologous sequence regions in a protein family
53
+ or you would like to find disulfide bonds in a protein structure: *Biotite*
54
+ has the right tool for you.
55
+ This package bundles popular tasks in computational molecular biology
56
+ into a uniform *Python* library.
57
+ It can handle a major part of the typical workflow
58
+ for sequence and biomolecular structure data:
59
+
60
+ - Searching and fetching data from biological databases
61
+ - Reading and writing popular sequence/structure file formats
62
+ - Analyzing and editing sequence/structure data
63
+ - Visualizing sequence/structure data
64
+ - Interfacing external applications for further analysis
65
+
66
+ *Biotite* internally stores most of the data as *NumPy* `ndarray` objects,
67
+ enabling
68
+
69
+ - fast C-accelerated analysis,
70
+ - intuitive usability through *NumPy*-like indexing syntax,
71
+ - extensibility through direct access of the internal *NumPy* arrays.
72
+
73
+ As a result the user can skip writing code for basic functionality (like
74
+ file parsers) and can focus on what their code makes unique - from
75
+ small analysis scripts to entire bioinformatics software packages.
76
+
77
+ If you use *Biotite* in a scientific publication, please cite:
78
+
79
+ | Kunzmann, P. & Hamacher, K. BMC Bioinformatics (2018) 19:346.
80
+ | `<https://doi.org/10.1186/s12859-018-2367-z>`_
81
+
82
+
83
+ Installation
84
+ ------------
85
+
86
+ *Biotite* requires the following packages:
87
+
88
+ - **numpy**
89
+ - **requests**
90
+ - **msgpack**
91
+ - **networkx**
92
+
93
+ Some functions require some extra packages:
94
+
95
+ - **matplotlib** - Required for plotting purposes.
96
+
97
+ *Biotite* can be installed via *Conda*...
98
+
99
+ .. code-block:: console
100
+
101
+ $ conda install -c conda-forge biotite
102
+
103
+ ... or *pip*
104
+
105
+ .. code-block:: console
106
+
107
+ $ pip install biotite
108
+
109
+
110
+ Usage
111
+ -----
112
+
113
+ Here is a small example that downloads two protein sequences from the
114
+ *NCBI Entrez* database and aligns them:
115
+
116
+ .. code-block:: python
117
+
118
+ import biotite.sequence.align as align
119
+ import biotite.sequence.io.fasta as fasta
120
+ import biotite.database.entrez as entrez
121
+
122
+ # Download FASTA file for the sequences of avidin and streptavidin
123
+ file_name = entrez.fetch_single_file(
124
+ uids=["CAC34569", "ACL82594"], file_name="sequences.fasta",
125
+ db_name="protein", ret_type="fasta"
126
+ )
127
+
128
+ # Parse the downloaded FASTA file
129
+ # and create 'ProteinSequence' objects from it
130
+ fasta_file = fasta.FastaFile.read(file_name)
131
+ avidin_seq, streptavidin_seq = fasta.get_sequences(fasta_file).values()
132
+
133
+ # Align sequences using the BLOSUM62 matrix with affine gap penalty
134
+ matrix = align.SubstitutionMatrix.std_protein_matrix()
135
+ alignments = align.align_optimal(
136
+ avidin_seq, streptavidin_seq, matrix,
137
+ gap_penalty=(-10, -1), terminal_penalty=False
138
+ )
139
+ print(alignments[0])
140
+
141
+ .. code-block::
142
+
143
+ MVHATSPLLLLLLLSLALVAPGLSAR------KCSLTGKWDNDLGSNMTIGAVNSKGEFTGTYTTAV-TA
144
+ -------------------DPSKESKAQAAVAEAGITGTWYNQLGSTFIVTA-NPDGSLTGTYESAVGNA
145
+
146
+ TSNEIKESPLHGTQNTINKRTQPTFGFTVNWKFS----ESTTVFTGQCFIDRNGKEV-LKTMWLLRSSVN
147
+ ESRYVLTGRYDSTPATDGSGT--ALGWTVAWKNNYRNAHSATTWSGQYV---GGAEARINTQWLLTSGTT
148
+
149
+ DIGDDWKATRVGINIFTRLRTQKE---------------------
150
+ -AANAWKSTLVGHDTFTKVKPSAASIDAAKKAGVNNGNPLDAVQQ
151
+
152
+ More documentation, including a tutorial, an example gallery and the API
153
+ reference is available at `<https://www.biotite-python.org/>`_.
154
+
155
+
156
+ Contribution
157
+ ------------
158
+
159
+ Interested in improving *Biotite*?
160
+ Have a look at the
161
+ `contribution guidelines <https://www.biotite-python.org/latest/contribution/index.html>`_.
162
+ Feel free to join our community chat on `Discord <https://discord.gg/cUjDguF>`_.
@@ -0,0 +1,354 @@
1
+ biotite/__init__.py,sha256=rL8ZyaCUjOrECEvRxyHj8MOMp4FHMJ8n6KKgrYf5OAQ,545
2
+ biotite/copyable.py,sha256=C7ycTQxqanxT0SmXhzy5OLp7NpZdNWHyokozdoVDGNA,1897
3
+ biotite/file.py,sha256=j95OcMIMkpFRZDNvvXwSqJYvwc_7eCG2GKV1hKlfugE,6733
4
+ biotite/setup_ccd.py,sha256=sWHyRm78imJybCzPu_W-gKR_itxrVwEEGJxMq6YlzIE,6051
5
+ biotite/version.py,sha256=sfeo6QRBwy3wEFaKhAEbFPpF98FLjoe4Car1c6NnghQ,704
6
+ biotite/visualize.py,sha256=GSxIL8PLXMDlaULG-ckSghRifQnBnkseZ-OWsnuno4M,13955
7
+ biotite/application/__init__.py,sha256=gOy5iGp5uuKTd0qpR9LgsmanB3ZfdQaTnZcKMRDwSx8,3079
8
+ biotite/application/application.py,sha256=MLMft5z1ocBMsTOXkUg-ZeZj0jC8l6WHrYSjgkE7iW8,8096
9
+ biotite/application/localapp.py,sha256=kN34ncpN1XamVUONU80UWxZZke03XcYSsjdDAfpMCF8,10267
10
+ biotite/application/msaapp.py,sha256=6e88Q7vgGSK_5uKdOVPcZF6wMKDRGYEKrvc9tb0yjbs,11974
11
+ biotite/application/util.py,sha256=-d4D9-hxPoXPDzYC-xkWAPVg2U-KGZcs71T-Aelw23o,2503
12
+ biotite/application/webapp.py,sha256=ATD_JKb68qZEc71YgBrEgdO2nxdJ-C25KBsofzGFDQE,2145
13
+ biotite/application/autodock/__init__.py,sha256=EhnSP7PGczduv0J0FovH34g49-ruQVHrRWyfz5F0ZCY,315
14
+ biotite/application/autodock/app.py,sha256=rXKOxNPRrAJDe9nYSSM0kN3_f7xrwGsvuVtGmgINzhQ,18692
15
+ biotite/application/blast/__init__.py,sha256=hZ031_9ikNQ7j87uaW5OAWbUx3R4qtqpyI1ff8lDTMM,366
16
+ biotite/application/blast/alignment.py,sha256=r9CfjvHcDCqOrR6YC-IWXq8l76qujYAz4xFfb65sfSo,3117
17
+ biotite/application/blast/webapp.py,sha256=_sHlSR1OdhB0bZkS9KiD3z3CXyop0g9MeR1XtRQakNo,14447
18
+ biotite/application/clustalo/__init__.py,sha256=nHtEaPTQU3oXfZZhe9TyA55NzFknFyAkALLuEn-C6ys,326
19
+ biotite/application/clustalo/app.py,sha256=f5NEOkKCiTDlIVNJ1ozefzixwndVC4_vPQq8a9rzUt4,7414
20
+ biotite/application/dssp/__init__.py,sha256=lUf-A2rJzPLJYZQZGpZUt7HtA0M59KaX6zQSCrkhfF4,323
21
+ biotite/application/dssp/app.py,sha256=Xs0A764NKchkGFVEfB4bqBinFC5r2wNyAmKEk4G06dQ,7612
22
+ biotite/application/mafft/__init__.py,sha256=VQPqkbQPAvGePLTb-Kgd1exMxDT5onbab34ukX7fiNk,315
23
+ biotite/application/mafft/app.py,sha256=gzcJZdUs5Qys0aK1uAcsMNrBB4sIjbju4Sc1hJ3JPh4,3281
24
+ biotite/application/muscle/__init__.py,sha256=B1JrhQYjgwSKWxpcYgXS91f2GM5Tc1i9Ocs2wElslRs,338
25
+ biotite/application/muscle/app3.py,sha256=Otgzi3VEYv0iQ_q5TesRJEfB6krbF7wXxfN87JzdKFg,7653
26
+ biotite/application/muscle/app5.py,sha256=xYF-iLn-UVue-vu4yGJFaQVtnPi561rwoIVwVCIu_C8,4474
27
+ biotite/application/sra/__init__.py,sha256=8I-uPkWUiu_ePPp56mI8MkwIOnjjQODpH0YMeOh8Leg,553
28
+ biotite/application/sra/app.py,sha256=qb1hRAXcR2xzzy0OeT5YaV-GLrzOnZDp3EZ6hllhQ80,15574
29
+ biotite/application/tantan/__init__.py,sha256=jkRIs_OYhF3pSd5EXrnfbFc7S96a_F87hq2pXk3BxHo,328
30
+ biotite/application/tantan/app.py,sha256=4tTLuTEy46nGsyy5wvDrB49fXjjV3SpnEXN6y6QXxTQ,7438
31
+ biotite/application/viennarna/__init__.py,sha256=m2obwXBnkDzRDzjrffsGdnp7YxAFz6CctsSmmg03xVI,473
32
+ biotite/application/viennarna/rnaalifold.py,sha256=QawXG9hYKQzdRt8-J_WiXUcoJx7Whps-iSCzq7DFJEA,10683
33
+ biotite/application/viennarna/rnafold.py,sha256=Tr6VfGLkzNhcGujND_k5XUb9uYAMsysnDWQ6oTcIamE,7910
34
+ biotite/application/viennarna/rnaplot.py,sha256=0cEPbZR4tvIbYJw1ekLV_7XJFzQUWqTo6Mi_tmWTvHU,6364
35
+ biotite/application/viennarna/util.py,sha256=racSlWGMtRRNtc_wh-ggIJWPDNoxIqwejc_Ztgusk8Q,2635
36
+ biotite/database/__init__.py,sha256=C_7zQxecZAB_x-4F_3JtU86TnB2GuxQju2mwfnLLy1M,725
37
+ biotite/database/error.py,sha256=3xyutl2nPzgBZqe5fpejOp6AQXAvtxO2hy_oWRrlcKI,410
38
+ biotite/database/afdb/__init__.py,sha256=VqRn4WE6wJWS4Sd916xchmMz7tyPpEflnwOVnInhEOs,333
39
+ biotite/database/afdb/download.py,sha256=cSi6x4KXSDHBm4qv7-dK4Q4k09uefNSoVGZjHWHfjQs,6679
40
+ biotite/database/entrez/__init__.py,sha256=-hAxLc_DdszhiCj6OO_jgSY-xmD05rC4urdUNHusr4s,388
41
+ biotite/database/entrez/check.py,sha256=5ITmnDoV6-lmfxux-HpXCUjcnI0dyYBwr-mqGkIb5e0,1853
42
+ biotite/database/entrez/dbnames.py,sha256=Ddp5IbbBaCsECO4aX9GQiIpOcTK1iIW2u2dfx7Fr2jA,2772
43
+ biotite/database/entrez/download.py,sha256=luFFDQMhk2hZtJpGHNqm817qc0I-0e73lzJlepSZ0Ms,7433
44
+ biotite/database/entrez/key.py,sha256=QZxGwwq0xbb9Nz8mTFQ-0C8nptxIqtGCmtDKFu0OBhg,1108
45
+ biotite/database/entrez/query.py,sha256=_TwBNkWAMoUWFKF45xD9WVvfvcpesMv4WgRJU3ctiGs,7373
46
+ biotite/database/pubchem/__init__.py,sha256=xjwfutIL4-JeTs7v4wCkRyy5q4KE7fGWDvo46ubkXt4,669
47
+ biotite/database/pubchem/download.py,sha256=p1UtPJ1YuccDWLsXE4Zd410RwqgbwCHj5ZDcISQ6-5U,9870
48
+ biotite/database/pubchem/error.py,sha256=Qj6fxWm2HjGa79m5nfGVyPuhBPp54wa2KLMlKbhj-qQ,878
49
+ biotite/database/pubchem/query.py,sha256=Z_DVRY62HhelCtMr3xwUOZBBUpNCwTKVC8ey9dG1HHs,26086
50
+ biotite/database/pubchem/throttle.py,sha256=HXf2l7EW5RLdW0bg72uSdXCDZXFXOE49akhfgKhEdc8,3286
51
+ biotite/database/rcsb/__init__.py,sha256=sTJnL4vYwhO7gSszMuT_Lr91uwX0wM1h-fZWiZkITYA,332
52
+ biotite/database/rcsb/download.py,sha256=a2Epoari3qItLTbBpjKWgBL-H4tbOAP9UQlUnhkXSS4,5757
53
+ biotite/database/rcsb/query.py,sha256=svweSjUNDOuZRLDfYTN17goFPOeHKhHs_qPvi9VkKs8,32897
54
+ biotite/database/uniprot/__init__.py,sha256=Lsk5Jd-qb5167VTgN48lWSSbqpjCM-fD0XKJyxaZb7o,334
55
+ biotite/database/uniprot/check.py,sha256=ngqCC9eeolz6jowHu3rnDbw1q4vvNgMP7x7EXPO14vA,1378
56
+ biotite/database/uniprot/download.py,sha256=tomBGHnmVZ8J8DHnWqVJiJIR50l9aJQCq9bGCC9yVVg,4234
57
+ biotite/database/uniprot/query.py,sha256=zvk0zqAxr0mNw0RYvYGKecqCA6Cj2wtxliWjkrJmKUw,7518
58
+ biotite/interface/__init__.py,sha256=CEbr_8h6pt3za2ybSeePcNKMsA2vkNUbzYhzP62g2Lg,717
59
+ biotite/interface/version.py,sha256=1duxoIDwBB6onugS5QqrM1iyM_O644Dw0FGai0V9ssc,2952
60
+ biotite/interface/warning.py,sha256=rU1F-b1MeIj1OWaK6wMeuM_YE-WKNGqo2TehjTr10KM,577
61
+ biotite/interface/openmm/__init__.py,sha256=ZcLsA9PPsrFDtY7rTMspizpCCQ_Fnm7vqwY-E5xTw6k,587
62
+ biotite/interface/openmm/state.py,sha256=jmdLw1xc7TQbgeOnZGgSgdmD_rR9VEnMqhX0Wnw_1Jo,2723
63
+ biotite/interface/openmm/system.py,sha256=V-SDc1YDa6nKHcREXz1cGAN7jZJ2X1cPf0gazz_Gv6s,7018
64
+ biotite/interface/pymol/__init__.py,sha256=bOX95ek4eKSgZFYynrfcuZFRgjADYvhbrVWCR6ok7yc,6648
65
+ biotite/interface/pymol/cgo.py,sha256=wlG1GkbHAGYVdzaOUPQ5KzI-29lrDkutt0NRw7PIq-8,9859
66
+ biotite/interface/pymol/convert.py,sha256=ldLXSiFdwhEkoZkTtLFOMvymIh9oLniChve54SbHJLA,6044
67
+ biotite/interface/pymol/display.py,sha256=KJfCM9-hzvFdC5KFxvG5-oEXd0MIaf3Ocr3dMQVoipY,8458
68
+ biotite/interface/pymol/object.py,sha256=c0BxeD2rxyPNonXBTA1iLINSRA4_Ljn1_Tzpf4_rLYg,44280
69
+ biotite/interface/pymol/shapes.py,sha256=Q34C5H5PkH4XbnyymwbJYp9iFD2Idj2a_qzDRA8tohQ,6066
70
+ biotite/interface/pymol/startup.py,sha256=8W0wIx13MGqGNvwTTT7ogmgypXCO48PI5w-DVPdS9jw,4619
71
+ biotite/interface/rdkit/__init__.py,sha256=K2gVw_wrbIU0v-I3RgRvrihdtcpFfL9_t-IlObLuCMk,532
72
+ biotite/interface/rdkit/mol.py,sha256=iMPR8U5girjnCa2-xLHQG1duw-tR3bUruVQRa1O27fc,19629
73
+ biotite/sequence/__init__.py,sha256=fSWhobaPGRMJI6-8UYFpjguxVtP4O4cAHmiRxNAGzYI,3423
74
+ biotite/sequence/alphabet.py,sha256=3iTSuuAsaPtTyqyTjeU0OF5y_17wuhC3lMVbcJGwqe8,17227
75
+ biotite/sequence/annotation.py,sha256=L_TZL2Gmsuokbr6A6Y6gVa4hbEM3ox_NJ_P5PTsZ4V0,29705
76
+ biotite/sequence/codec.cpython-312-x86_64-linux-gnu.so,sha256=NPX0_0xK66IUUltehkd9oq2946vFFno-t9LKpEu6QGs,2221912
77
+ biotite/sequence/codec.pyx,sha256=ed415FTMBJfiI9WbgKRFO3tF1f_SpRHxyEafLxW-g1k,4962
78
+ biotite/sequence/codon.py,sha256=Scua9XHD-TnWfCaKHRegKQGSP3XK3wW3zLgxen45ux0,16346
79
+ biotite/sequence/codon_tables.txt,sha256=zZLT642H4qEkwUk5g-hWh-6ZWP_bgaz70fWcxwJDWJ0,10209
80
+ biotite/sequence/profile.py,sha256=f-KYMVtSB83O5J0Jy87Nzetd4axZDVsUcMSES2J7MJY,19249
81
+ biotite/sequence/search.py,sha256=G__T-GHMJODWmgh87z5wxs_g9-t1DtvEOd-USp-Qizg,3088
82
+ biotite/sequence/seqtypes.py,sha256=I5OaC9IOJoA9G610Tod67cgCWDQqTAgYpK1FHF8Ofok,23246
83
+ biotite/sequence/sequence.py,sha256=eIZ7Ugz9IwXlWXs_HC2NGyAtDDcP-Vf1z82jynT_PPE,11691
84
+ biotite/sequence/align/__init__.py,sha256=NyYyB9PmYWCBQB_MaI-L54vYR64JraUvP9uobGJN54w,4711
85
+ biotite/sequence/align/alignment.py,sha256=vf6Ldh0nevFkQ3dHJJRZw6_ZsqoWHHv-6M1Hy_DQgEs,22380
86
+ biotite/sequence/align/banded.cpython-312-x86_64-linux-gnu.so,sha256=V0eY2cdP2s3q4_05olkkLMk2VDYHgxLPoKJ9zqJ5mCY,4434424
87
+ biotite/sequence/align/banded.pyx,sha256=n9-nBkEryjaA-_rQxjT90ZHKIh7Ep1cjFPjWPlHUC9I,25283
88
+ biotite/sequence/align/buckets.py,sha256=k8H5RBS5Y7DrMoIOd5Ifrxp-nYWosJuqOYgLd1y-DWs,2464
89
+ biotite/sequence/align/cigar.py,sha256=ZhxnWSURuKMwOshbeNIK8mtt6r-xcFWXLzoLtluEo88,14335
90
+ biotite/sequence/align/kmeralphabet.cpython-312-x86_64-linux-gnu.so,sha256=A4d2SnrHubtrzuJo-pVN-T4_bRThG5NxrY9x1R2ONCE,3414944
91
+ biotite/sequence/align/kmeralphabet.pyx,sha256=t4MKs3uIXGn_2AB8NRKQxY73RoBLDa-IlKVnSdANkCU,18636
92
+ biotite/sequence/align/kmersimilarity.cpython-312-x86_64-linux-gnu.so,sha256=Wsdz_h7zGcbMigRCVARKKa8v0mIcLxnH4XyqwPf7_-A,1538976
93
+ biotite/sequence/align/kmersimilarity.pyx,sha256=EBpz8R_fofRd4gsmBJLuH2qZgMWKlzQkCJ54w_-K7gQ,8433
94
+ biotite/sequence/align/kmertable.cpython-312-x86_64-linux-gnu.so,sha256=H8Qae0w5ngXr194Zrf6KfQovExOmeQH5AMtdmjIZVLQ,5718992
95
+ biotite/sequence/align/kmertable.pyx,sha256=EqLVngPURKux5tsrv5PauuN5hLKAJbDDVZWnVGWZufo,121697
96
+ biotite/sequence/align/localgapped.cpython-312-x86_64-linux-gnu.so,sha256=PDOWn0lMyuvJkdw7PCaUvbCc-ZioB4yzOUHKeTIoJYA,10802656
97
+ biotite/sequence/align/localgapped.pyx,sha256=1uoooliEMravtH1fQJSth0a6FEM4La_v32wGP2C0RIQ,33106
98
+ biotite/sequence/align/localungapped.cpython-312-x86_64-linux-gnu.so,sha256=Nc8TEWfF-brwfYkqCNkSFUxKfPI4WR9tGU0kNJOPd_0,2377808
99
+ biotite/sequence/align/localungapped.pyx,sha256=h9wgrY85_t0_wOGDW56uJ9N4bo7GciYpeJZpNIBlp4g,9660
100
+ biotite/sequence/align/matrix.py,sha256=A1PUA43ltUnvYqB_RO6WPbvAtCzZI3zSfeKHP3aVSNQ,22360
101
+ biotite/sequence/align/multiple.cpython-312-x86_64-linux-gnu.so,sha256=uX3EGk2rQrUOS3C4rVl8x-PEDmtrvifXnC67GA2oz68,4417608
102
+ biotite/sequence/align/multiple.pyx,sha256=ny6BbmXApxQAYMrUT7MPXqfFiEfrhfxvQApiSPoZ7iQ,21924
103
+ biotite/sequence/align/pairwise.cpython-312-x86_64-linux-gnu.so,sha256=w3pvjxH31CUhJTKSQwa9GLc-ZruNzU8pPFtISTftYPo,4752096
104
+ biotite/sequence/align/pairwise.pyx,sha256=Le9RWShVTDSUMpubq9-nxXSFNZp8CgYjhDsLUBE6yoY,22598
105
+ biotite/sequence/align/permutation.cpython-312-x86_64-linux-gnu.so,sha256=tvFnLdeFwUG0jvPtz_yi6-HfOUTuFcNbZWHTDjfs_0c,1571848
106
+ biotite/sequence/align/permutation.pyx,sha256=xbbw5DJ7c5SXnuSUl2hJUMxzvinKP1Khc7CSdH5cEE0,10028
107
+ biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
108
+ biotite/sequence/align/selector.cpython-312-x86_64-linux-gnu.so,sha256=zUnpscp4Ntt3UZKgf3rl3FUQHpNdjsMj02WBV8gb6u8,2294936
109
+ biotite/sequence/align/selector.pyx,sha256=BstkOkz-nB2dPtkZIZbU5QlCT-h3QHxdsGg1pGUh-Qo,33471
110
+ biotite/sequence/align/statistics.py,sha256=mtscAgqIZIdTjtsvjg4s2A6gzFex0QxyHxmcAxpBQww,9652
111
+ biotite/sequence/align/tracetable.cpython-312-x86_64-linux-gnu.so,sha256=TihkVwO6cZC5YA9-2J685wxiI1e8zBh1QzEK5g5aa60,1411944
112
+ biotite/sequence/align/tracetable.pxd,sha256=_VP1ayP6FZL1Tzn1pCCbt6xPZDzFtE9bH0Gvop2lxyQ,2825
113
+ biotite/sequence/align/tracetable.pyx,sha256=1gsT3OV7VkE6i_UpNiYOLVvD2_tfJgbNZb1yv9F4XR8,15455
114
+ biotite/sequence/align/matrix_data/3Di.mat,sha256=vOp0H-cCTJC3puTPYU63e2ymGVvVNEdhnqzV4jQPJWo,2021
115
+ biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=Lj6_ayLvWa6148OKEtyHuOsd6hszb0suzDIpuY4XPJI,2174
116
+ biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=j6FWyeTXvfpSR0ZGecI18MCATcjM_FTJ2XGoEjWg3Qg,2122
117
+ biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=wt6Gkbx6KPazNoRXfedE-yXjH6Par0PXiVpFprenJGU,2122
118
+ biotite/sequence/align/matrix_data/BLOSUM40.mat,sha256=GiFTkaezFzIoLRmaejU0lEmOrQhCxNzf7KrPY4kRdlg,2122
119
+ biotite/sequence/align/matrix_data/BLOSUM45.mat,sha256=GaB31QYKlKYhKtYJ3zA6JARjhzppaU6fV2xXYvv_2wk,2122
120
+ biotite/sequence/align/matrix_data/BLOSUM50.mat,sha256=oVLjC4r8q0IoH_hgS8UTWL6YJTFV_eYq4gcHgFoNPWc,2122
121
+ biotite/sequence/align/matrix_data/BLOSUM50_13p.mat,sha256=vh0DKMYb6Zqg31fqVhlObTWhk8LJgevlI8VlQmnXOO0,1850
122
+ biotite/sequence/align/matrix_data/BLOSUM50_14.3.mat,sha256=Ri8ORSV5rHnxJgtNiSJ7PIVTaaYThtMoUHJ4ym8ZSsI,1850
123
+ biotite/sequence/align/matrix_data/BLOSUM50_5.0.mat,sha256=radLsoMzRcgXzX0ZwDShU44I3qRLskMU91lf6V5MTws,1850
124
+ biotite/sequence/align/matrix_data/BLOSUM55.mat,sha256=lIELun4-b77M0Sv5VekXhCZcFW97ruo1NIKv_rdrPiY,2122
125
+ biotite/sequence/align/matrix_data/BLOSUM60.mat,sha256=iHPf06rge36Xi7k1uwFKwvTb_hHrGNL44TApk3C5Ss8,2122
126
+ biotite/sequence/align/matrix_data/BLOSUM62.mat,sha256=hVENOEbubV9HeOQlz42vbg27iJswby0TQ04SVHgO-0A,2122
127
+ biotite/sequence/align/matrix_data/BLOSUM62_13p.mat,sha256=4z-R_JXr0dl3gDY6OAXLB_GO71NVP4ibKhduRuFeTjc,1850
128
+ biotite/sequence/align/matrix_data/BLOSUM62_14.3.mat,sha256=X6FYu0KwcgQBEo93S7ZbmcZeL86he_ak0XVa-r8lJ58,1850
129
+ biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat,sha256=WvizmTK3QOPODABlz6_X8YT4KgvMZKy_0PkbOthDpjA,1850
130
+ biotite/sequence/align/matrix_data/BLOSUM65.mat,sha256=ZbjpdSsPq4yt3j-p1CbG4EkchKwNtTwk4nDanjKWdYs,2122
131
+ biotite/sequence/align/matrix_data/BLOSUM70.mat,sha256=kl3LsfT3r8zCWRHW3sJjiBUP6S6xCSySRmHPOIhu9Hc,2122
132
+ biotite/sequence/align/matrix_data/BLOSUM75.mat,sha256=_nk7JXwGAiqRA4hbEKxihkdPGAxkVVd6UWDT-3J7oX8,2122
133
+ biotite/sequence/align/matrix_data/BLOSUM80.mat,sha256=LllxdrgJKAi6GZz8nYDcjWV7Wj5QFd-4HVVyhYGc4Yc,2124
134
+ biotite/sequence/align/matrix_data/BLOSUM85.mat,sha256=olO7oxXaVtmNJNLCtacRvie-235EtZ63aDDV7fXY6c4,2122
135
+ biotite/sequence/align/matrix_data/BLOSUM90.mat,sha256=TebOIl7Y7oTgQcT2PC2vL0Oqhs3RsSCGgHTchJXHIU8,2122
136
+ biotite/sequence/align/matrix_data/BLOSUMN.mat,sha256=YszKvjUBwH8YWd8z5xILKFvUMu1cvL1wHkTiOH1dMcY,2121
137
+ biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat,sha256=GUiQ63AMTP91d5poXhaUN1Pgv-8nb3B_kvQzOKmwEMk,1850
138
+ biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat,sha256=m3Es9ILTi5vCKAKjV40dLrJpZ8I0n7QaueKi0tNa1NI,1850
139
+ biotite/sequence/align/matrix_data/CorBLOSUM57_14.3.mat,sha256=HafyyKYsVh9EJG869LAbqpVF5fMnZB-3uJV38EjlPR4,1850
140
+ biotite/sequence/align/matrix_data/CorBLOSUM61_5.0.mat,sha256=-CAqsMmAh5593WHhcUr9i_idl4-dtrCX-oHY_4oTTCI,1850
141
+ biotite/sequence/align/matrix_data/CorBLOSUM66_13p.mat,sha256=MmqiM1WZTAN9DX5wxt-8pI1uoEXDgbCStUhwAyXoSlI,1850
142
+ biotite/sequence/align/matrix_data/CorBLOSUM67_14.3.mat,sha256=_ceD-DlNi1VJsUBdxQFffeMbBaYS0fLO2dDPHHi1d_Q,1850
143
+ biotite/sequence/align/matrix_data/DAYHOFF.mat,sha256=qYkUgQ37EYTawAjc52vbPNJOfC9LYo_vmuX-Arsa2mg,2081
144
+ biotite/sequence/align/matrix_data/GONNET.mat,sha256=xNJHqcmqSFtO1fFCL7Q1rhr-MVsjPLi6yMmXJLQSUTU,1679
145
+ biotite/sequence/align/matrix_data/IDENTITY.mat,sha256=ZayOMxt7zidr8C0JRiG3knc5XT2F718W3PT4G15AZv4,4057
146
+ biotite/sequence/align/matrix_data/MATCH.mat,sha256=ZSRUBke-2jfozrFVZK5xmGjcKv4GGAcSq9h7PgNmSME,1850
147
+ biotite/sequence/align/matrix_data/NUC.mat,sha256=xgPkb5oVn7RRYyzfn5xoe659qtsw-yZF9f0Jys5wdJA,1171
148
+ biotite/sequence/align/matrix_data/PAM10.mat,sha256=iQdTLbAqn58hp5TQ6NJus3C2Af5Ga11i7eJGK9LQjdo,2666
149
+ biotite/sequence/align/matrix_data/PAM100.mat,sha256=AFv8yYX7JO8xsvpktGbFIHxmfp0HCmb-cDqUmEmbkF4,2066
150
+ biotite/sequence/align/matrix_data/PAM110.mat,sha256=A6diM61xaLeHh-ilFD0NSh7dqR5GSfxvyboLYWr9ctM,2066
151
+ biotite/sequence/align/matrix_data/PAM120.mat,sha256=6tNjpzRcyzDXtNz144uTYI1LtlQHMoffi6rc2uLU8pU,2067
152
+ biotite/sequence/align/matrix_data/PAM130.mat,sha256=Bs6sHk5rIbjwfffBuYSDk85LtDSsSSnJM2JT3ezw_P4,2067
153
+ biotite/sequence/align/matrix_data/PAM140.mat,sha256=0ZOMbK_5afy-zU8BOL9UkxEkX3DjfD6t-LJGT0H8f-o,2067
154
+ biotite/sequence/align/matrix_data/PAM150.mat,sha256=1Jbj7ITgahFFbjGbD3dS0WXrYL2HmSYj9_6ITsgNSWQ,2067
155
+ biotite/sequence/align/matrix_data/PAM160.mat,sha256=87otpzOMs1nIbU_B5MvTpShSJ3iixYyHpAJttuwFeoY,2067
156
+ biotite/sequence/align/matrix_data/PAM170.mat,sha256=a4eCSlODOitkpUjyysvm3A9WtVBN-S_IH3kjbG9AVtA,2668
157
+ biotite/sequence/align/matrix_data/PAM180.mat,sha256=mll_lIfL8oBzNlNcEhoh6ULv9lKG-HTBanUyJhzDO-U,2668
158
+ biotite/sequence/align/matrix_data/PAM190.mat,sha256=h-CbsySNQqW2YCS67ptA5CktzqP6hRqvud6dXXYnvVg,2067
159
+ biotite/sequence/align/matrix_data/PAM20.mat,sha256=Pdom13Fn6QDH_zCoJRA1fYlFnkSl0mVmoyZ7tRyQsk8,2666
160
+ biotite/sequence/align/matrix_data/PAM200.mat,sha256=BUDVdPGRgVgxH552pwFA2WkO5QpM1gLLu6cgMiNhprs,2067
161
+ biotite/sequence/align/matrix_data/PAM210.mat,sha256=UfUmaJ09ID11GUzuNeK7aUzgZTW1iJLizADnD0qT2BI,2067
162
+ biotite/sequence/align/matrix_data/PAM220.mat,sha256=58FW5l4TkLX5rUALdt0rrOXQWGqGlatGJjaZcN3HHYM,2067
163
+ biotite/sequence/align/matrix_data/PAM230.mat,sha256=kpdHawONOvHXHJgUnkPMFRikSyqjtU1Rucp_foRV6Jc,2068
164
+ biotite/sequence/align/matrix_data/PAM240.mat,sha256=A0Gc2o7EZyP4KmHjDFavCR05FLPlDRfft_dpNPU_T4I,2068
165
+ biotite/sequence/align/matrix_data/PAM250.mat,sha256=k2zF7yPgJixf2vdNXYH1iEjrdMyg1b7w85bSexaJcE4,2068
166
+ biotite/sequence/align/matrix_data/PAM260.mat,sha256=9jEd8LFi-qjASOb72oNHpo_l-pDXq3JjLnRfOCm3jFQ,2068
167
+ biotite/sequence/align/matrix_data/PAM270.mat,sha256=GHm5rgJf1aPdSxiUfIg8c4rO0_MssNR5EU4GCXUbdsk,2669
168
+ biotite/sequence/align/matrix_data/PAM280.mat,sha256=rY1PexjhfsVxp_4qa7BMiv7_9xF95K2ePVE7i-iAFPM,2068
169
+ biotite/sequence/align/matrix_data/PAM290.mat,sha256=pCavYvRBDo9CQLsKDhuwmxyfkV8XROjQISulxSjMfFA,2068
170
+ biotite/sequence/align/matrix_data/PAM30.mat,sha256=j8VojReY4jJuqzcZue6SmZUqIMlDTkxVKL9FMuRYbmM,2666
171
+ biotite/sequence/align/matrix_data/PAM300.mat,sha256=fzIOK3tBJvxAPm3eBUENzQSDblSyqghJwwc6wYUGQfc,2068
172
+ biotite/sequence/align/matrix_data/PAM310.mat,sha256=WAMSfgRZyS_Q6pI5j34tN7V6kVHSA1zxVhSwJnZlZTM,2068
173
+ biotite/sequence/align/matrix_data/PAM320.mat,sha256=c1aHpd5_c05sUdVCXYPh0x7i2HLBbeesTXLE2O3q8Xw,2068
174
+ biotite/sequence/align/matrix_data/PAM330.mat,sha256=cUa0Kd14AWTjMcH9mU6VUIoKYSpKwV3N7PgPGuYJvtA,2068
175
+ biotite/sequence/align/matrix_data/PAM340.mat,sha256=9rV5CU441SuU-MhTIOFBHbg2i6b2NZJ2GfemgAeQUQA,2068
176
+ biotite/sequence/align/matrix_data/PAM350.mat,sha256=gGMAQ5oeI29qv2GkXcg4NBvueP0ylj1CBPj4J1W7Wkg,2669
177
+ biotite/sequence/align/matrix_data/PAM360.mat,sha256=-TWC24-2AF5Tfsg64Sopiap34154wHIFmrSRQlDDTXo,2068
178
+ biotite/sequence/align/matrix_data/PAM370.mat,sha256=ZD8BpkVrVK22_oLSXZb9d_kzNDfic_i0eVT1fUNkyBk,2068
179
+ biotite/sequence/align/matrix_data/PAM380.mat,sha256=5Bt7fOVfU2vRNR5IHvxFwgRwYgOOqYpdElMMrK-e0HQ,2068
180
+ biotite/sequence/align/matrix_data/PAM390.mat,sha256=EUdmTuLyEY9VF-OcexBlglFhHEks4yzolczpRsXN4ek,2068
181
+ biotite/sequence/align/matrix_data/PAM40.mat,sha256=OAGOKH9t72qvn5P2ydSf3oPvy-XSiFH1vC_-a4hqEAs,2666
182
+ biotite/sequence/align/matrix_data/PAM400.mat,sha256=sdF4tBZUHl_WQA_YEhR46_TMkaqhsdfh6j4EzylYqKo,2068
183
+ biotite/sequence/align/matrix_data/PAM410.mat,sha256=gtd1bfoNX8M8Ey4B266w7AyTVi0kD91NcF3KJVB6wcM,2669
184
+ biotite/sequence/align/matrix_data/PAM420.mat,sha256=v02OOl9-ZTthEs0UQXdu_olwV7vzcVhlweDKUnUdQfU,2669
185
+ biotite/sequence/align/matrix_data/PAM430.mat,sha256=PxW4F20F3-ArQgqb8jdemeGw4Q7FKd1P055_sOrKZKg,2068
186
+ biotite/sequence/align/matrix_data/PAM440.mat,sha256=bF2DkFSgljfdj3hJMbGngQ62uGks7s0_TaCPWBcf6LI,2068
187
+ biotite/sequence/align/matrix_data/PAM450.mat,sha256=fboz1GEu55EwZPMG0gl6fFFiWojvz8rbZxcl6ziWNCQ,2068
188
+ biotite/sequence/align/matrix_data/PAM460.mat,sha256=BbV3cIcdHq-OxTXgjOEGJdboPOW77s49yLESURjLT1w,2069
189
+ biotite/sequence/align/matrix_data/PAM470.mat,sha256=iWeG55pioMzuzbuPsmUECPlzowP63Ttgdnq9cKP0gEQ,2671
190
+ biotite/sequence/align/matrix_data/PAM480.mat,sha256=7eUrMblKu7oIAVUvINWGr8Xs2-eCA81TMUhP5m0QvwU,2671
191
+ biotite/sequence/align/matrix_data/PAM490.mat,sha256=34zBaxPzrPcsBEEIU5aiY2Zih5VIm2pXuaNVmMBzGd4,2070
192
+ biotite/sequence/align/matrix_data/PAM50.mat,sha256=L3wZ938pS5_dWww1UAITFNql0NaDyIDk4NrCK9Yz9Ww,2666
193
+ biotite/sequence/align/matrix_data/PAM500.mat,sha256=C4uoSrH1V_DYYPH5VBF6mUf6l9hSfhQ4Xhrj11suGes,2070
194
+ biotite/sequence/align/matrix_data/PAM60.mat,sha256=IKL_uHSfVKnGPTxq3TTh78Z6Q4Pw_Um39V8Uz6ACTkE,2666
195
+ biotite/sequence/align/matrix_data/PAM70.mat,sha256=0YDiLYDyWtpBLW62MHD-cifJVHxmc3Jykf2bLUUpRuU,2666
196
+ biotite/sequence/align/matrix_data/PAM80.mat,sha256=EQjS999W5zT3ltZxtjqNsdF54cED_KfiXMCr_0EdvHs,2666
197
+ biotite/sequence/align/matrix_data/PAM90.mat,sha256=e-zxoVFQHxDoHT2_83SgzRnY88tT7_q8lg6Ikk3ioXs,2666
198
+ biotite/sequence/align/matrix_data/PB.license,sha256=OkDCfXO06BfooLXYC3iF7LXXB_Uqqex1B2gjUEFdUZI,1091
199
+ biotite/sequence/align/matrix_data/PB.mat,sha256=1T1JxAckzd9oXRSXe09M6mYp-gjOhxeh0d8UMrt4dv4,1694
200
+ biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat,sha256=LBEV4ormPIv1WntfL4RZt4Pi0He9xYY1zq3iWLXi_fU,1850
201
+ biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat,sha256=VkfMzO1eMLvpj5x4iL_YAopkZpYEjvx0QnuveFoVnTg,1850
202
+ biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat,sha256=aGEwU0vk_MOeDN_7u9eOO4DnYjWoEKk6DgxZCgb9HxU,1850
203
+ biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=mPlyPQkz3RID3iT4XxYMDmyLfEya7sCV6t5BGdg665I,1850
204
+ biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=KtQkagPYJQcovVafvPvEfahCw-Ohmm_Ck3chzWmI4Wc,1850
205
+ biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=3q0VPjzTta9EUt7JFlIvJApplOilUrcbg275Xx4tmJY,1850
206
+ biotite/sequence/graphics/__init__.py,sha256=9o7zvUaCzuEhYzr1_dj1SID2EaQky2fSxVF7NkGoHC0,1152
207
+ biotite/sequence/graphics/alignment.py,sha256=IvwMusuZ72eDPl-VDPQGmu1GMS3uo9xtPcvDgK8hsVQ,39368
208
+ biotite/sequence/graphics/colorschemes.py,sha256=GvmyxoEyYFOFwK2zM_DXM8RPecEDGhalOVinR7BdQ_Q,5517
209
+ biotite/sequence/graphics/dendrogram.py,sha256=XKLFtUACA4rx0STLrQ8SCQAgK6EtFTxlnxNBEFT4Qw0,7670
210
+ biotite/sequence/graphics/features.py,sha256=SJ81q33R7ZJSaJiVMJoie2IjWXUydU0eWCy_E10vzdE,17297
211
+ biotite/sequence/graphics/logo.py,sha256=2VLuWyQpuwl6IyNhB39fgBmY2dT4Geh5fhpnwQ5TCNM,3692
212
+ biotite/sequence/graphics/plasmid.py,sha256=_cP1pHLzWgS66UIhMSAuWD5JWP0SmBzWjPBJxHgR3Fc,26002
213
+ biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=wuo5hCVuc_wR9a5AviU9BXRQC8XUb90VqJCsKcpq8pc,917
214
+ biotite/sequence/graphics/color_schemes/autumn.json,sha256=usp-Y70tk39LCJV64vi7t3wd0pcf7kOjEE8dZhAbryM,842
215
+ biotite/sequence/graphics/color_schemes/blossom.json,sha256=NneinRHISSkgrdCDtaxNCCaF6-9Ya_9PlKKKR6LweXc,843
216
+ biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=xkNRgGj_ersYNx8eSDAnI1HQalGiAWHw97tO_pmfyNE,249
217
+ biotite/sequence/graphics/color_schemes/clustalx_protein.json,sha256=P-PeZPcdP58RYgESclfNIVF1S84LxGqGzhBNEYaRyVY,704
218
+ biotite/sequence/graphics/color_schemes/flower.json,sha256=S0xkRcSkM_awZxpIBQqhT4_vxnWjVKq5ZXF6VxWBY7o,842
219
+ biotite/sequence/graphics/color_schemes/jalview_buried.json,sha256=SyfbSC5TSbdNudMZa6IrT0053OLJapLObuF2ERMdJmc,777
220
+ biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json,sha256=FTwFLJ049NH4CFS0B5OaXtmySkE6yiluenixoNSaZSM,785
221
+ biotite/sequence/graphics/color_schemes/jalview_prop_helix.json,sha256=mZrFbuArC56OOtdxZ0m3hQs35RTR0sCATgbaq5DfsYM,780
222
+ biotite/sequence/graphics/color_schemes/jalview_prop_strand.json,sha256=83GsLW_LOC4156kX4hVXUa4LUmoJm9FhOgyXrmXOR-E,781
223
+ biotite/sequence/graphics/color_schemes/jalview_prop_turn.json,sha256=q3znbzT1Hs_JRr7Juud245Be7JIiiNlZm-7XoaRssIM,779
224
+ biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=q9GXPg8OaeE6SvWPvdKxBU1hHmHSNNVaiPTmmJu4pP0,702
225
+ biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=V0IJ-GsT8G8-J9CILWaiY3QkB35wYEq2kbWEDqYjm-4,701
226
+ biotite/sequence/graphics/color_schemes/ocean.json,sha256=oWGprmKUfhXuTuAkZezrDifhIdf3ko6LIF2yK9OqcbA,841
227
+ biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=nZRuvOdLmtSXZKNk2jZOuXV6utQAxa4oK7E36NqlYr8,676
228
+ biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=xG5qNN6Zov99pgEkna2jws7Vdp5cfYhKaUaPkyq9Nzw,248
229
+ biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=C5imi4gVjtS0HVV6yQK3MOgNuOi1SPCnGDHiYqqbaU4,753
230
+ biotite/sequence/graphics/color_schemes/spring.json,sha256=7by_eGRbvdxueWB2RmSxi0mYTDpAhVglnX2jkrdw8FU,842
231
+ biotite/sequence/graphics/color_schemes/sunset.json,sha256=HnKftW6Mv52-fhqgIElQV0yW8cYMqtksPShG12zW7Is,842
232
+ biotite/sequence/graphics/color_schemes/wither.json,sha256=6dq-9koLqk6ec5WCLYzFRcnjmIYjjnLfnecZwMur3yw,842
233
+ biotite/sequence/io/__init__.py,sha256=4K13uxFWe8IpNC8yuVxjDiI7-8lmXu7qT6iMmVSqPs4,314
234
+ biotite/sequence/io/general.py,sha256=sD03pLnkxsT6vFh8806ZhErC8GEG3LF_70NMcVJyGe0,6694
235
+ biotite/sequence/io/fasta/__init__.py,sha256=rcpXd-Mzp-qCJC2zW3O8XSgpcefOq8ftFLvvnuYL3ec,720
236
+ biotite/sequence/io/fasta/convert.py,sha256=illuR8DVCKS-K3nxUO4TJZ-u_PTJzD363_5ra7Ditvk,9406
237
+ biotite/sequence/io/fasta/file.py,sha256=EuFiktTtONHsEevsxkvFzpbEZ2qVdWKyNkFaVcLeaUw,9052
238
+ biotite/sequence/io/fastq/__init__.py,sha256=lhw9bxWS0eKPXzF1lg8fvrNmgAmJPLBzIB6jEP5GOVI,588
239
+ biotite/sequence/io/fastq/convert.py,sha256=x4rWn7WHdKxW1u7mwDgM8Z3qaML4lAO7r-JiMTQbvaI,3632
240
+ biotite/sequence/io/fastq/file.py,sha256=Q5jrBN21Fi0hp6rU5cc68kQPYc1jWdZfMwhx0Ze6oGw,17817
241
+ biotite/sequence/io/genbank/__init__.py,sha256=9H6gHYLBtZ06YkT616wwJF89G1sFToSs0QRuQ8noZBQ,473
242
+ biotite/sequence/io/genbank/annotation.py,sha256=t39bqsDmLyLBTS_wc15uGOVsqJ-GRP3iXGIqJBxzUow,9431
243
+ biotite/sequence/io/genbank/file.py,sha256=5XvuJCd_FuI2zh03_bLbLSAuORNw4tXr7p9sGutWgVA,20354
244
+ biotite/sequence/io/genbank/metadata.py,sha256=rhLF30_RSluJ-sulsKpUjqHNqVazvkn98fTCCoATAXs,9351
245
+ biotite/sequence/io/genbank/sequence.py,sha256=imZmCC1WX_PMCsbV8f9wUJu2PsZluB4JFsavcjq71W4,5504
246
+ biotite/sequence/io/gff/__init__.py,sha256=KPWsE4Hjd4QY2prhi4W4WmwW-z_kySy0ZiUOSnmyGy4,923
247
+ biotite/sequence/io/gff/convert.py,sha256=fqBNG5SbfU34wVgdHcXcRJC5sIUID-6rdskEz7Vdqes,4611
248
+ biotite/sequence/io/gff/file.py,sha256=0PYwl1KP-nv05BS6aBfzjmOqW-2O3A_R4W5UYE-k7zw,16076
249
+ biotite/sequence/phylo/__init__.py,sha256=TW1CQqOa3JZYqidRy5XE8gA0HuzA8zo2Iouit3wSsBM,1261
250
+ biotite/sequence/phylo/nj.cpython-312-x86_64-linux-gnu.so,sha256=3TVqAAkUG1AdFsxVeBGeUCO9EO8nEFMV9VtH3y0rr7k,1470696
251
+ biotite/sequence/phylo/nj.pyx,sha256=s6hoo_7s3VFy-7Hgq9lKtUVXTZ-To8Dxwytk-ohfWYI,7281
252
+ biotite/sequence/phylo/tree.cpython-312-x86_64-linux-gnu.so,sha256=7KXrNRMIVmsuSBLUhWDbIjPZBAbUh3f-IZyZubjdKrI,2017192
253
+ biotite/sequence/phylo/tree.pyx,sha256=4e4Bhlm1qWY0Wvj6JqDE9jVwP6lEUmE8lIHEUmRNLwU,39206
254
+ biotite/sequence/phylo/upgma.cpython-312-x86_64-linux-gnu.so,sha256=BMAA4RFRrTM_FQv0H3uBpLR2dRT6f-BQ3rsESP-FT3Y,1394496
255
+ biotite/sequence/phylo/upgma.pyx,sha256=86QxGjj8fcGRhze7vZfqw8JLjLAZUevhkWDmzTy357E,5213
256
+ biotite/structure/__init__.py,sha256=dqOp3qC1UU3AP7cxNus2wmtHLB9vB_D17Lhmd9cRxAM,5488
257
+ biotite/structure/atoms.py,sha256=7-QBLs4E04PwHBV7DSB9gDpSqyfGruiIONUmKMeGSa4,50837
258
+ biotite/structure/basepairs.py,sha256=BT3_LHmerkRfzuQSU86MVTvDs0QZ0UjNJpopJm5VXBI,49908
259
+ biotite/structure/bonds.cpython-312-x86_64-linux-gnu.so,sha256=8y1bj_HUd8cXa1ZoC9lVjdA1kyr9Kkq8osS2NYjAbqU,4903024
260
+ biotite/structure/bonds.pyx,sha256=Bjjc5bTxFmbMUWeYNf1FMfHJ8DB4V02_DRFwrsqtdno,71791
261
+ biotite/structure/box.py,sha256=0GFndCBJKBha8bMlX_9oIs0Y52a0S6Y0g1Qszh83_Sg,23396
262
+ biotite/structure/celllist.cpython-312-x86_64-linux-gnu.so,sha256=v5WFeDW9oFblm-XhN0_wL8f27gC8f-sRTUdYrzUZ4Rg,2471368
263
+ biotite/structure/celllist.pyx,sha256=vRYrg7F1NqWmFatFuVrxXKUnySzCNhM2uMyI2fASOq4,34563
264
+ biotite/structure/chains.py,sha256=pp0GUo3Nc75lUy19mgv6E6F-QyWZJKo44AyY3H5fNpY,9347
265
+ biotite/structure/charges.cpython-312-x86_64-linux-gnu.so,sha256=VHLKdiAe9lA2MGLwSIa7W1cntrLOAFu8e51KWSve2R4,1921000
266
+ biotite/structure/charges.pyx,sha256=RpCz4sVOiwmZeVTcMAapiWJFVBPAK0gAAiNoNZuxZWA,18822
267
+ biotite/structure/compare.py,sha256=JFIE2Ve8JRTxsAK9eTODgWNPi6AuiFMe9rRIOohe6OU,27437
268
+ biotite/structure/density.py,sha256=wGZFgqkK6Kdv0OzmmWz8eXPEVxPSFShxINWOOdehaIg,4197
269
+ biotite/structure/dotbracket.py,sha256=jl_Zqp0IINBwFPtZ0XK8rvmGmwebncbYpF26vJldIZY,7198
270
+ biotite/structure/error.py,sha256=NI8oZfhO7oYWlcEIi025QZFD3Wjvwn6SvOn_RanrFT0,783
271
+ biotite/structure/filter.py,sha256=3K8Xr4CgwlesldchvlEo0EC8NL_sWiFFfRnbunfc_xQ,18126
272
+ biotite/structure/geometry.py,sha256=LojdE15YFkFAUhVH65GQS-UJDMTG8yurrB7H5pfalTA,29281
273
+ biotite/structure/hbond.py,sha256=DhVGCm9s_nNHnHhvfNUl81ph77Y-SIeFY1GGf1kPeL4,15192
274
+ biotite/structure/integrity.py,sha256=-HaFg2ckyVgSyHEyHqqNQ8fOwnhVzieYsMgyTCdzCFo,6763
275
+ biotite/structure/mechanics.py,sha256=A7590nMLbsfp_pHvLukca_YV0Q6VcrfDRW_p58D8ZNY,2587
276
+ biotite/structure/molecules.py,sha256=Ar4NF3r3VQwirFprTMItIdHeluMSlpKOpRanZ0EEsWI,15291
277
+ biotite/structure/pseudoknots.py,sha256=X3LrVSJuV1EGXuKMstkzrJQ86otbC_6-vX215fKygiU,22094
278
+ biotite/structure/rdf.py,sha256=Yf9PoWqSpNK3QsWqnCnOUBGL8WwKGOakgZ0pxj5UOiA,8104
279
+ biotite/structure/repair.py,sha256=EUvsV7EkJt-j7ruOnhZxhqdxfl7FMSKVzuQr7_xJE5g,6996
280
+ biotite/structure/residues.py,sha256=DsI_ia4B2ZbWeBpxOvKxAJ3dlu7iYyiqgXIP8AkKjOs,28403
281
+ biotite/structure/rings.py,sha256=pdxrBNtuvOE1hi9sxtI1EamUFtGnqprpkjzZpUi7jgs,15584
282
+ biotite/structure/sasa.cpython-312-x86_64-linux-gnu.so,sha256=gtD8RXimRCFaTGoaTwrNwJvqZvPE6NufgupsMJ2QmlA,1901960
283
+ biotite/structure/sasa.pyx,sha256=lditLNluxg3LsxV1o3B69QOK0Lu1zeuRJXrEQ2SVIKk,12918
284
+ biotite/structure/segments.py,sha256=7ORMe1q_2LFSP9efwAvIM3UhL0KhRlURXMnUGPfoJaw,10785
285
+ biotite/structure/sequence.py,sha256=TlJiSH1AC9XETl3G24UkKl1FHfpWh1aPKsdxj4ZdiEs,4245
286
+ biotite/structure/spacegroups.json,sha256=SxP_900pi9iQruI_cgE1CTxl4k5kqOppv-nDyx64d3k,51558
287
+ biotite/structure/spacegroups.license,sha256=v4W5iaPxCZa2djh8J_KaHZCPX254AQjYjqaMIXI1wPI,1297
288
+ biotite/structure/sse.py,sha256=OHXohnYi4ipBcSas9XTi9Pm8oNasM49Oxr7DBvYbe1U,11404
289
+ biotite/structure/superimpose.py,sha256=gdn6be9KOf24qphK3mFRkxFDK4ejrtTm8C_tcpzSFHs,19562
290
+ biotite/structure/tm.py,sha256=HtG56CZI9fk3zjML5f5XJXcE7oKVtYS1r-HGm2ugawo,20967
291
+ biotite/structure/transform.py,sha256=i8xwMKfpHlN4hHFZBm7-U_nP5bLx_n1WgX8BQZ541_k,26975
292
+ biotite/structure/util.py,sha256=naGADXePMb635MdtYKxO_5BFPEMz-YYF2Q2cH7ImAjA,4398
293
+ biotite/structure/alphabet/__init__.py,sha256=tUAybrggScCsom1b_EXQ63pA88L_PmQpcYS-MnqKavM,928
294
+ biotite/structure/alphabet/encoder.py,sha256=2BWLMdGBr2bHw09vMhbzPztMKSnVt8UhUf85g5M1xnY,11383
295
+ biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
296
+ biotite/structure/alphabet/i3d.py,sha256=SLJkVWiKl-EXMcsv8gcKF4zujoR5L8sQRyo9fnrETPM,3009
297
+ biotite/structure/alphabet/layers.py,sha256=Y1Y8G2LqqzC7M0kNUv8k-EXTVVKGLnPDJKdRrVEf3H4,2087
298
+ biotite/structure/alphabet/pb.license,sha256=OkDCfXO06BfooLXYC3iF7LXXB_Uqqex1B2gjUEFdUZI,1091
299
+ biotite/structure/alphabet/pb.py,sha256=ksJKkYj4y3jzfvgFUF7g99W981RvH46RXKe3RW5fkR8,5994
300
+ biotite/structure/alphabet/unkerasify.py,sha256=P-EY9gbWglJHPF9xp_SivF67bIQE73403htyJMu4-nE,3301
301
+ biotite/structure/graphics/__init__.py,sha256=YwMT8-c2DjrkcwyK6jPeDtAKxQda0OhElnwk8J0y3Hc,353
302
+ biotite/structure/graphics/atoms.py,sha256=988_URX4hfTE3oBOYgAvZruOrzogMPcFKiTT5RJL01E,8116
303
+ biotite/structure/graphics/rna.py,sha256=1fa-_ROxHIdCQu4nFEmDWqWnQlXA6iZDZDprKST_h_g,11842
304
+ biotite/structure/info/__init__.py,sha256=k08kdsKlrxaVQ9x8MjEXoVFaXl1J8OcpLf6iG7dUgOY,698
305
+ biotite/structure/info/atom_masses.json,sha256=WME4ezDPy-HrEIhxkOGxcmIMdgxf1x7e_xwBkFRdTsY,2383
306
+ biotite/structure/info/atoms.py,sha256=8GoHM5owz0-Tnx9OzV8Q41sz-WU7TAJfy4sTgAW939Q,3271
307
+ biotite/structure/info/bonds.py,sha256=6pXAZPeKPL2pwFi5fhSyTwh_gd5fToIgvwguGffrE-0,4644
308
+ biotite/structure/info/ccd.py,sha256=A3-YomYJS3bbAfntLpvwLkmCgQFjR2suMwFnGQsgPXg,5851
309
+ biotite/structure/info/components.bcif,sha256=mQrO6PEOkPNw2i1DHp5qugNyDx0g-2d_uV-T4KD1bwI,62070945
310
+ biotite/structure/info/groups.py,sha256=f3kSytTRMgP57zVd_Qa8Yddvu-ZUfeVcVTxmRCmQBhY,3184
311
+ biotite/structure/info/masses.py,sha256=HOdaeFZkd5LSrl00025S1MwXT7im8V-s0bU54tr1te8,4555
312
+ biotite/structure/info/misc.py,sha256=hAvTh8KdkPGsh9Y2mGxDRRt9ZDPgCoAGLHr1smCANlg,3428
313
+ biotite/structure/info/radii.py,sha256=PGpl5WoaFBzAktxNodzb_mCz8jp0AwW3GNXk9jKN3Ho,7281
314
+ biotite/structure/info/standardize.py,sha256=UEvlRB9XDPO0S4usROlSl51DjuadrTslFBp2jqcMqEw,7739
315
+ biotite/structure/io/__init__.py,sha256=Lxmd8x6lpWz8nA0QhXmrgjvD_mOP0KyGmEzsVGzxXX4,998
316
+ biotite/structure/io/general.py,sha256=S826akJeJkLBSgApssIDP4OgHecz5FPI3pl5tQU11C4,8452
317
+ biotite/structure/io/trajfile.py,sha256=FQGtW5d1BRQ0fgNN9ObUADPvP9shO6Ls8zJvSsaSZ-M,25397
318
+ biotite/structure/io/util.py,sha256=ivgxUZI4-Muv4cC6cLQdkYyk0TRhcnHi7J5DIX95BmI,1016
319
+ biotite/structure/io/dcd/__init__.py,sha256=tYiiTSmqDrsSgg_sZaoQgx2D8N9OeqlooxH46-4-iaQ,388
320
+ biotite/structure/io/dcd/file.py,sha256=jaU81fvGl4WG0zXB1dBKTOtSvFF3fS0kxeNR-wwpXlY,2224
321
+ biotite/structure/io/gro/__init__.py,sha256=tEKrIlgahoBJXvrwtmZ1yVSOE8QW8GS6lk7MHwE2Cso,408
322
+ biotite/structure/io/gro/file.py,sha256=X5ubDEyNvbLbyzrsGsi9qylGanyvyzdC3t95KQu2xlE,12740
323
+ biotite/structure/io/mol/__init__.py,sha256=WvcNPDdf9W1zPyJ0tjTvGNxA83ht18uRQA8BF4s7Wno,582
324
+ biotite/structure/io/mol/convert.py,sha256=jTw6O7S9nOcbF871Wwu7M_BHrOtBIe4PuqovdGL0-os,3789
325
+ biotite/structure/io/mol/ctab.py,sha256=yWhR81XMuWKrO3DVFG6hRgnvjOYQ7ituGTW7EnfDchs,14120
326
+ biotite/structure/io/mol/header.py,sha256=AbYKcqGsnPiTf1nH-bbIg97A4RClPeJwFk4IleW5Duk,3425
327
+ biotite/structure/io/mol/mol.py,sha256=qp_yQ6tUIMmJNjzCqtle92mw_VJm4hkS0TRRJxAegS0,5461
328
+ biotite/structure/io/mol/sdf.py,sha256=09GRt6OGdsWH-ccgR8tXVvDM6pCUhnsZdPRv9Dx_QQU,32975
329
+ biotite/structure/io/netcdf/__init__.py,sha256=SX8u2Eu99PXiP0kvHJ4mMCXTy68wV-ptcFdYn9DzEVk,350
330
+ biotite/structure/io/netcdf/file.py,sha256=m5POlwjX0y28FjrK3lCglX9JD9r6iVuHJlQgJNZNStI,2192
331
+ biotite/structure/io/pdb/__init__.py,sha256=5NbUMDRKIe7jJ2ByRHpMhJzY_vIasjSgO63Zxrpq8BM,733
332
+ biotite/structure/io/pdb/convert.py,sha256=nnRZl5cG5N6UQURG_oSfLZ1z32uXeiF9pOMcpOTFNcI,13826
333
+ biotite/structure/io/pdb/file.py,sha256=GCS8qD-efyXswe5acr2Erz3qurGfY52J60n06BqA7jc,54557
334
+ biotite/structure/io/pdb/hybrid36.cpython-312-x86_64-linux-gnu.so,sha256=6HO4UwFMFtPYXI0ZruE6r_5AWgovOwRRoCOJd5feljQ,1411768
335
+ biotite/structure/io/pdb/hybrid36.pyx,sha256=BKV7oh0xrrjqVrkhTn7KEolon57fUhlG4Yf0Tf22wuU,8036
336
+ biotite/structure/io/pdbqt/__init__.py,sha256=a0_uIzhzCHdLBMdXhb5KEhbyRSURmqYXNwdjnJ6LAbY,441
337
+ biotite/structure/io/pdbqt/convert.py,sha256=xF4m-tZG_4ykhZsknqUivFXbb6VqLXVLwmhi1AbOmuw,4008
338
+ biotite/structure/io/pdbqt/file.py,sha256=Yvg_1g9EM7UHCoBKuzHSbWI61axEqg4_l8W3ZeI9aH4,26638
339
+ biotite/structure/io/pdbx/__init__.py,sha256=DlVXhrcuAF9A6Gim_JMccz-j8jDZuF2liDDA5cZxzx8,717
340
+ biotite/structure/io/pdbx/bcif.py,sha256=8dQyPCtQho4tV2dRK52hOsifOOGnXPMLI7SDJt_UgaU,21248
341
+ biotite/structure/io/pdbx/cif.py,sha256=1hY4-brq_kX_Hg5-OJm600zcdXV6KDidZhTdHKQunYY,34979
342
+ biotite/structure/io/pdbx/component.py,sha256=xnVVqpbBAj8ED4SCYx1tF6jHXCRVK8NWHcoG-fH7QVg,8398
343
+ biotite/structure/io/pdbx/compress.py,sha256=YAUaMsaXwmxpFOnbYgkrTl4k-k3PiBXyC6tKWAajxfI,13407
344
+ biotite/structure/io/pdbx/convert.py,sha256=gNdslGuHHQwixoacevhxLgUpCtY3AZEvSNUYvP0W3UQ,80733
345
+ biotite/structure/io/pdbx/encoding.cpython-312-x86_64-linux-gnu.so,sha256=u-77bkD_ehXSzYsuW8aSMQxB8kLuBxL3Og1_Fjnce9s,11140952
346
+ biotite/structure/io/pdbx/encoding.pyx,sha256=gqTnq2qONPRdv5lz2JkJIhjK4k3J9k-Fp8YOVbeE9N0,33609
347
+ biotite/structure/io/trr/__init__.py,sha256=5WNHMGiHNNzYdoiybE6Cs0bYAcznS5D3ABu7gHDJ__A,359
348
+ biotite/structure/io/trr/file.py,sha256=2LjaLoKYfNgyQGSEfQ1TdZQqaPyrBh3irbJdmEKFTMI,1235
349
+ biotite/structure/io/xtc/__init__.py,sha256=ipZjsWBil-h2ujdlEobyI2jGy5xsfRVOPAyCsYAJ7G4,357
350
+ biotite/structure/io/xtc/file.py,sha256=PknO2-xzLgKTBW5Gig5Hv1HUZ4BIHRf2con2MLxEwNU,1235
351
+ biotite-1.5.0.dist-info/METADATA,sha256=UUKw6ATrAZtUc-I5_CvIIate_rM_OP8QyhHmLKF2tjY,5525
352
+ biotite-1.5.0.dist-info/WHEEL,sha256=fURNj07RJcwQqrX3mWoQo-CfZpKexsVCZSbdJDtw9iA,149
353
+ biotite-1.5.0.dist-info/RECORD,,
354
+ biotite-1.5.0.dist-info/licenses/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_24_x86_64
5
+ Tag: cp312-cp312-manylinux_2_28_x86_64
6
+
@@ -0,0 +1,30 @@
1
+ BSD 3-Clause License
2
+ --------------------
3
+
4
+ Copyright 2017, The Biotite contributors
5
+ All rights reserved.
6
+
7
+ Redistribution and use in source and binary forms, with or without modification,
8
+ are permitted provided that the following conditions are met:
9
+
10
+ 1. Redistributions of source code must retain the above copyright notice, this
11
+ list of conditions and the following disclaimer.
12
+
13
+ 2. Redistributions in binary form must reproduce the above copyright notice,
14
+ this list of conditions and the following disclaimer in the documentation and/or
15
+ other materials provided with the distribution.
16
+
17
+ 3. Neither the name of the copyright holder nor the names of its contributors
18
+ may be used to endorse or promote products derived from this software without
19
+ specific prior written permission.
20
+
21
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.