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.
- biotite/application/application.py +3 -3
- biotite/application/autodock/app.py +1 -1
- biotite/application/blast/webapp.py +1 -1
- biotite/application/clustalo/app.py +1 -1
- biotite/application/dssp/app.py +13 -3
- biotite/application/localapp.py +36 -2
- biotite/application/msaapp.py +10 -10
- biotite/application/muscle/app3.py +5 -18
- biotite/application/muscle/app5.py +5 -5
- biotite/application/sra/app.py +0 -5
- biotite/application/util.py +22 -2
- biotite/application/viennarna/rnaalifold.py +8 -8
- biotite/application/viennarna/rnaplot.py +9 -3
- biotite/application/viennarna/util.py +1 -1
- biotite/application/webapp.py +1 -1
- biotite/database/afdb/__init__.py +12 -0
- biotite/database/afdb/download.py +191 -0
- biotite/database/entrez/dbnames.py +10 -0
- biotite/database/entrez/download.py +9 -10
- biotite/database/entrez/key.py +1 -1
- biotite/database/entrez/query.py +5 -4
- biotite/database/pubchem/download.py +6 -6
- biotite/database/pubchem/error.py +10 -0
- biotite/database/pubchem/query.py +12 -23
- biotite/database/rcsb/download.py +3 -2
- biotite/database/rcsb/query.py +8 -9
- biotite/database/uniprot/check.py +22 -17
- biotite/database/uniprot/download.py +3 -6
- biotite/database/uniprot/query.py +4 -5
- biotite/file.py +14 -2
- biotite/interface/__init__.py +19 -0
- biotite/interface/openmm/__init__.py +16 -0
- biotite/interface/openmm/state.py +93 -0
- biotite/interface/openmm/system.py +227 -0
- biotite/interface/pymol/__init__.py +198 -0
- biotite/interface/pymol/cgo.py +346 -0
- biotite/interface/pymol/convert.py +185 -0
- biotite/interface/pymol/display.py +267 -0
- biotite/interface/pymol/object.py +1226 -0
- biotite/interface/pymol/shapes.py +178 -0
- biotite/interface/pymol/startup.py +169 -0
- biotite/interface/rdkit/__init__.py +15 -0
- biotite/interface/rdkit/mol.py +490 -0
- biotite/interface/version.py +71 -0
- biotite/interface/warning.py +19 -0
- biotite/sequence/align/__init__.py +0 -4
- biotite/sequence/align/alignment.py +49 -14
- biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
- biotite/sequence/align/banded.pyx +26 -26
- biotite/sequence/align/cigar.py +2 -2
- biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.pyx +19 -2
- biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmertable.pyx +58 -48
- biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localgapped.pyx +47 -47
- biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localungapped.pyx +10 -10
- biotite/sequence/align/matrix.py +284 -57
- biotite/sequence/align/matrix_data/3Di.mat +24 -0
- biotite/sequence/align/matrix_data/PB.license +21 -0
- biotite/sequence/align/matrix_data/PB.mat +18 -0
- biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
- biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
- biotite/sequence/align/pairwise.pyx +35 -35
- biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
- biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
- biotite/sequence/align/selector.pyx +2 -2
- biotite/sequence/align/statistics.py +1 -1
- biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
- biotite/sequence/alphabet.py +5 -2
- biotite/sequence/annotation.py +19 -13
- biotite/sequence/codec.cpython-312-darwin.so +0 -0
- biotite/sequence/codon.py +1 -2
- biotite/sequence/graphics/alignment.py +25 -39
- biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
- biotite/sequence/graphics/color_schemes/pb_flower.json +2 -1
- biotite/sequence/graphics/colorschemes.py +44 -11
- biotite/sequence/graphics/dendrogram.py +4 -2
- biotite/sequence/graphics/features.py +2 -2
- biotite/sequence/graphics/logo.py +10 -12
- biotite/sequence/io/fasta/convert.py +1 -2
- biotite/sequence/io/fasta/file.py +1 -1
- biotite/sequence/io/fastq/file.py +3 -3
- biotite/sequence/io/genbank/file.py +3 -3
- biotite/sequence/io/genbank/sequence.py +2 -0
- biotite/sequence/io/gff/convert.py +1 -1
- biotite/sequence/io/gff/file.py +1 -2
- biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
- biotite/sequence/profile.py +105 -29
- biotite/sequence/search.py +0 -1
- biotite/sequence/seqtypes.py +136 -8
- biotite/sequence/sequence.py +1 -2
- biotite/setup_ccd.py +197 -0
- biotite/structure/__init__.py +6 -3
- biotite/structure/alphabet/__init__.py +25 -0
- biotite/structure/alphabet/encoder.py +332 -0
- biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
- biotite/structure/alphabet/i3d.py +109 -0
- biotite/structure/alphabet/layers.py +86 -0
- biotite/structure/alphabet/pb.license +21 -0
- biotite/structure/alphabet/pb.py +170 -0
- biotite/structure/alphabet/unkerasify.py +128 -0
- biotite/structure/atoms.py +163 -66
- biotite/structure/basepairs.py +26 -26
- biotite/structure/bonds.cpython-312-darwin.so +0 -0
- biotite/structure/bonds.pyx +79 -25
- biotite/structure/box.py +19 -21
- biotite/structure/celllist.cpython-312-darwin.so +0 -0
- biotite/structure/celllist.pyx +83 -67
- biotite/structure/chains.py +5 -37
- biotite/structure/charges.cpython-312-darwin.so +0 -0
- biotite/structure/compare.py +420 -13
- biotite/structure/density.py +1 -1
- biotite/structure/dotbracket.py +27 -28
- biotite/structure/filter.py +8 -8
- biotite/structure/geometry.py +74 -127
- biotite/structure/hbond.py +17 -19
- biotite/structure/info/__init__.py +1 -0
- biotite/structure/info/atoms.py +24 -15
- biotite/structure/info/bonds.py +12 -6
- biotite/structure/info/ccd.py +125 -34
- biotite/structure/info/{ccd/components.bcif → components.bcif} +0 -0
- biotite/structure/info/groups.py +62 -19
- biotite/structure/info/masses.py +9 -6
- biotite/structure/info/misc.py +15 -22
- biotite/structure/info/radii.py +92 -22
- biotite/structure/info/standardize.py +4 -4
- biotite/structure/integrity.py +4 -6
- biotite/structure/io/general.py +2 -2
- biotite/structure/io/gro/file.py +8 -9
- biotite/structure/io/mol/convert.py +1 -1
- biotite/structure/io/mol/ctab.py +33 -28
- biotite/structure/io/mol/mol.py +1 -1
- biotite/structure/io/mol/sdf.py +80 -53
- biotite/structure/io/pdb/convert.py +4 -3
- biotite/structure/io/pdb/file.py +85 -25
- biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +36 -36
- biotite/structure/io/pdbx/__init__.py +1 -0
- biotite/structure/io/pdbx/bcif.py +54 -15
- biotite/structure/io/pdbx/cif.py +92 -66
- biotite/structure/io/pdbx/component.py +15 -4
- biotite/structure/io/pdbx/compress.py +321 -0
- biotite/structure/io/pdbx/convert.py +410 -75
- biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbx/encoding.pyx +98 -17
- biotite/structure/io/trajfile.py +9 -6
- biotite/structure/io/util.py +38 -0
- biotite/structure/mechanics.py +0 -1
- biotite/structure/molecules.py +141 -156
- biotite/structure/pseudoknots.py +7 -13
- biotite/structure/repair.py +2 -4
- biotite/structure/residues.py +13 -24
- biotite/structure/rings.py +335 -0
- biotite/structure/sasa.cpython-312-darwin.so +0 -0
- biotite/structure/sasa.pyx +2 -1
- biotite/structure/segments.py +69 -11
- biotite/structure/sequence.py +0 -1
- biotite/structure/sse.py +0 -2
- biotite/structure/superimpose.py +74 -62
- biotite/structure/tm.py +581 -0
- biotite/structure/transform.py +12 -25
- biotite/structure/util.py +76 -4
- biotite/version.py +9 -4
- biotite/visualize.py +111 -1
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/METADATA +6 -2
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/RECORD +173 -143
- biotite/structure/info/ccd/README.rst +0 -8
- biotite/structure/info/ccd/amino_acids.txt +0 -1663
- biotite/structure/info/ccd/carbohydrates.txt +0 -1135
- biotite/structure/info/ccd/nucleotides.txt +0 -798
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/WHEEL +0 -0
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/licenses/LICENSE.rst +0 -0
|
@@ -1,114 +1,136 @@
|
|
|
1
|
-
biotite
|
|
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=
|
|
5
|
-
biotite/file.py,sha256=
|
|
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=
|
|
10
|
-
biotite/database/entrez/key.py,sha256=
|
|
11
|
-
biotite/database/entrez/download.py,sha256=
|
|
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=
|
|
14
|
-
biotite/database/uniprot/check.py,sha256=
|
|
15
|
-
biotite/database/uniprot/query.py,sha256=
|
|
16
|
-
biotite/database/uniprot/download.py,sha256=
|
|
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=
|
|
19
|
-
biotite/database/pubchem/query.py,sha256=
|
|
20
|
-
biotite/database/pubchem/download.py,sha256=
|
|
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=
|
|
24
|
-
biotite/database/rcsb/download.py,sha256=
|
|
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/
|
|
27
|
-
biotite/
|
|
28
|
-
biotite/
|
|
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=
|
|
31
|
-
biotite/application/msaapp.py,sha256=
|
|
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=
|
|
34
|
-
biotite/application/viennarna/rnaalifold.py,sha256=
|
|
35
|
-
biotite/application/viennarna/util.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
52
|
-
biotite/application/muscle/app3.py,sha256
|
|
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=
|
|
55
|
-
biotite/sequence/annotation.py,sha256=
|
|
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=
|
|
58
|
-
biotite/sequence/profile.py,sha256=
|
|
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=
|
|
62
|
-
biotite/sequence/codon.py,sha256=
|
|
63
|
-
biotite/sequence/search.py,sha256=
|
|
64
|
-
biotite/sequence/codec.cpython-312-darwin.so,sha256=
|
|
65
|
-
biotite/sequence/alphabet.py,sha256=
|
|
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=
|
|
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=
|
|
71
|
-
biotite/sequence/io/gff/convert.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
82
|
-
biotite/sequence/align/matrix.py,sha256=
|
|
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=
|
|
85
|
-
biotite/sequence/align/pairwise.cpython-312-darwin.so,sha256=
|
|
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=
|
|
88
|
-
biotite/sequence/align/banded.cpython-312-darwin.so,sha256=
|
|
89
|
-
biotite/sequence/align/kmeralphabet.pyx,sha256=
|
|
90
|
-
biotite/sequence/align/localungapped.cpython-312-darwin.so,sha256=
|
|
91
|
-
biotite/sequence/align/alignment.py,sha256=
|
|
92
|
-
biotite/sequence/align/permutation.cpython-312-darwin.so,sha256=
|
|
93
|
-
biotite/sequence/align/multiple.cpython-312-darwin.so,sha256=
|
|
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=
|
|
96
|
-
biotite/sequence/align/__init__.py,sha256=
|
|
97
|
-
biotite/sequence/align/localungapped.pyx,sha256=
|
|
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=
|
|
100
|
-
biotite/sequence/align/kmersimilarity.cpython-312-darwin.so,sha256=
|
|
101
|
-
biotite/sequence/align/cigar.py,sha256=
|
|
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=
|
|
104
|
-
biotite/sequence/align/tracetable.cpython-312-darwin.so,sha256=
|
|
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=
|
|
107
|
-
biotite/sequence/align/selector.cpython-312-darwin.so,sha256=
|
|
108
|
-
biotite/sequence/align/banded.pyx,sha256
|
|
109
|
-
biotite/sequence/align/kmeralphabet.cpython-312-darwin.so,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
206
|
-
biotite/sequence/graphics/logo.py,sha256=
|
|
207
|
-
biotite/sequence/graphics/colorschemes.py,sha256=
|
|
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=
|
|
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/
|
|
228
|
-
biotite/sequence/phylo/
|
|
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=
|
|
234
|
-
biotite/structure/repair.py,sha256
|
|
235
|
-
biotite/structure/superimpose.py,sha256=
|
|
236
|
-
biotite/structure/chains.py,sha256=
|
|
237
|
-
biotite/structure/box.py,sha256=
|
|
238
|
-
biotite/structure/charges.cpython-312-darwin.so,sha256=
|
|
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=
|
|
241
|
-
biotite/structure/segments.py,sha256=
|
|
242
|
-
biotite/structure/sequence.py,sha256=
|
|
243
|
-
biotite/structure/sasa.pyx,sha256=
|
|
244
|
-
biotite/structure/bonds.cpython-312-darwin.so,sha256=
|
|
245
|
-
biotite/structure/
|
|
246
|
-
biotite/structure/
|
|
247
|
-
biotite/structure/
|
|
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=
|
|
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=
|
|
252
|
-
biotite/structure/transform.py,sha256=
|
|
253
|
-
biotite/structure/geometry.py,sha256=
|
|
254
|
-
biotite/structure/molecules.py,sha256=
|
|
255
|
-
biotite/structure/filter.py,sha256=
|
|
256
|
-
biotite/structure/bonds.pyx,sha256=
|
|
257
|
-
biotite/structure/
|
|
258
|
-
biotite/structure/
|
|
259
|
-
biotite/structure/
|
|
260
|
-
biotite/structure/
|
|
261
|
-
biotite/structure/
|
|
262
|
-
biotite/structure/
|
|
263
|
-
biotite/structure/
|
|
264
|
-
biotite/structure/
|
|
265
|
-
biotite/structure/
|
|
266
|
-
biotite/structure/
|
|
267
|
-
biotite/structure/
|
|
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=
|
|
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=
|
|
275
|
-
biotite/structure/io/pdbx/bcif.py,sha256=
|
|
276
|
-
biotite/structure/io/pdbx/convert.py,sha256=
|
|
277
|
-
biotite/structure/io/pdbx/encoding.pyx,sha256=
|
|
278
|
-
biotite/structure/io/pdbx/__init__.py,sha256=
|
|
279
|
-
biotite/structure/io/pdbx/
|
|
280
|
-
biotite/structure/io/pdbx/
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
294
|
-
biotite/structure/io/mol/mol.py,sha256=
|
|
295
|
-
biotite/structure/io/mol/sdf.py,sha256=
|
|
296
|
-
biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so,sha256=
|
|
297
|
-
biotite/structure/io/pdb/convert.py,sha256=
|
|
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=
|
|
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/
|
|
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=
|
|
304
|
-
biotite/structure/info/groups.py,sha256=
|
|
305
|
-
biotite/structure/info/radii.py,sha256=
|
|
306
|
-
biotite/structure/info/standardize.py,sha256=
|
|
307
|
-
biotite/structure/info/bonds.py,sha256=
|
|
308
|
-
biotite/structure/info/masses.py,sha256=
|
|
309
|
-
biotite/structure/info/atoms.py,sha256=
|
|
310
|
-
biotite/structure/info/ccd.py,sha256=
|
|
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``.
|