biotite 0.41.2__cp310-cp310-macosx_11_0_arm64.whl → 1.0.0__cp310-cp310-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/__init__.py +2 -3
- biotite/application/__init__.py +1 -1
- biotite/application/application.py +20 -10
- biotite/application/autodock/__init__.py +1 -1
- biotite/application/autodock/app.py +74 -79
- biotite/application/blast/__init__.py +1 -1
- biotite/application/blast/alignment.py +19 -10
- biotite/application/blast/webapp.py +92 -85
- biotite/application/clustalo/__init__.py +1 -1
- biotite/application/clustalo/app.py +46 -61
- biotite/application/dssp/__init__.py +1 -1
- biotite/application/dssp/app.py +8 -11
- biotite/application/localapp.py +62 -60
- biotite/application/mafft/__init__.py +1 -1
- biotite/application/mafft/app.py +16 -22
- biotite/application/msaapp.py +78 -89
- biotite/application/muscle/__init__.py +1 -1
- biotite/application/muscle/app3.py +50 -64
- biotite/application/muscle/app5.py +23 -31
- biotite/application/sra/__init__.py +1 -1
- biotite/application/sra/app.py +64 -68
- biotite/application/tantan/__init__.py +1 -1
- biotite/application/tantan/app.py +22 -45
- biotite/application/util.py +7 -9
- biotite/application/viennarna/rnaalifold.py +34 -28
- biotite/application/viennarna/rnafold.py +24 -39
- biotite/application/viennarna/rnaplot.py +36 -21
- biotite/application/viennarna/util.py +17 -12
- biotite/application/webapp.py +13 -14
- biotite/copyable.py +13 -13
- biotite/database/__init__.py +1 -1
- biotite/database/entrez/__init__.py +1 -1
- biotite/database/entrez/check.py +2 -3
- biotite/database/entrez/dbnames.py +7 -5
- biotite/database/entrez/download.py +55 -49
- biotite/database/entrez/key.py +1 -1
- biotite/database/entrez/query.py +62 -23
- biotite/database/error.py +2 -1
- biotite/database/pubchem/__init__.py +1 -1
- biotite/database/pubchem/download.py +43 -45
- biotite/database/pubchem/error.py +2 -2
- biotite/database/pubchem/query.py +34 -31
- biotite/database/pubchem/throttle.py +3 -4
- biotite/database/rcsb/__init__.py +1 -1
- biotite/database/rcsb/download.py +44 -52
- biotite/database/rcsb/query.py +85 -80
- biotite/database/uniprot/check.py +6 -3
- biotite/database/uniprot/download.py +6 -11
- biotite/database/uniprot/query.py +115 -31
- biotite/file.py +12 -31
- biotite/sequence/__init__.py +3 -3
- biotite/sequence/align/__init__.py +2 -2
- biotite/sequence/align/alignment.py +99 -90
- biotite/sequence/align/banded.cpython-310-darwin.so +0 -0
- biotite/sequence/align/buckets.py +12 -10
- biotite/sequence/align/cigar.py +43 -52
- biotite/sequence/align/kmeralphabet.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.pyx +55 -51
- biotite/sequence/align/kmersimilarity.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmertable.pyx +3 -2
- biotite/sequence/align/localgapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/localungapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/matrix.py +81 -82
- biotite/sequence/align/multiple.cpython-310-darwin.so +0 -0
- biotite/sequence/align/multiple.pyx +1 -1
- biotite/sequence/align/pairwise.cpython-310-darwin.so +0 -0
- biotite/sequence/align/permutation.cpython-310-darwin.so +0 -0
- biotite/sequence/align/permutation.pyx +12 -4
- biotite/sequence/align/selector.cpython-310-darwin.so +0 -0
- biotite/sequence/align/selector.pyx +52 -54
- biotite/sequence/align/statistics.py +32 -33
- biotite/sequence/align/tracetable.cpython-310-darwin.so +0 -0
- biotite/sequence/alphabet.py +51 -65
- biotite/sequence/annotation.py +78 -77
- biotite/sequence/codec.cpython-310-darwin.so +0 -0
- biotite/sequence/codon.py +90 -79
- biotite/sequence/graphics/__init__.py +1 -1
- biotite/sequence/graphics/alignment.py +184 -103
- biotite/sequence/graphics/colorschemes.py +10 -12
- biotite/sequence/graphics/dendrogram.py +79 -34
- biotite/sequence/graphics/features.py +133 -99
- biotite/sequence/graphics/logo.py +22 -28
- biotite/sequence/graphics/plasmid.py +229 -178
- biotite/sequence/io/fasta/__init__.py +1 -1
- biotite/sequence/io/fasta/convert.py +44 -33
- biotite/sequence/io/fasta/file.py +42 -55
- biotite/sequence/io/fastq/__init__.py +1 -1
- biotite/sequence/io/fastq/convert.py +11 -14
- biotite/sequence/io/fastq/file.py +68 -112
- biotite/sequence/io/genbank/__init__.py +2 -2
- biotite/sequence/io/genbank/annotation.py +12 -20
- biotite/sequence/io/genbank/file.py +74 -76
- biotite/sequence/io/genbank/metadata.py +74 -62
- biotite/sequence/io/genbank/sequence.py +13 -14
- biotite/sequence/io/general.py +39 -30
- biotite/sequence/io/gff/__init__.py +2 -2
- biotite/sequence/io/gff/convert.py +10 -15
- biotite/sequence/io/gff/file.py +81 -65
- biotite/sequence/phylo/__init__.py +1 -1
- biotite/sequence/phylo/nj.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/tree.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/upgma.cpython-310-darwin.so +0 -0
- biotite/sequence/profile.py +57 -28
- biotite/sequence/search.py +17 -15
- biotite/sequence/seqtypes.py +200 -164
- biotite/sequence/sequence.py +15 -17
- biotite/structure/__init__.py +3 -3
- biotite/structure/atoms.py +221 -235
- biotite/structure/basepairs.py +260 -271
- biotite/structure/bonds.cpython-310-darwin.so +0 -0
- biotite/structure/bonds.pyx +29 -32
- biotite/structure/box.py +67 -71
- biotite/structure/celllist.cpython-310-darwin.so +0 -0
- biotite/structure/chains.py +55 -39
- biotite/structure/charges.cpython-310-darwin.so +0 -0
- biotite/structure/compare.py +32 -32
- biotite/structure/density.py +13 -18
- biotite/structure/dotbracket.py +20 -22
- biotite/structure/error.py +10 -2
- biotite/structure/filter.py +82 -77
- biotite/structure/geometry.py +130 -119
- biotite/structure/graphics/atoms.py +60 -43
- biotite/structure/graphics/rna.py +81 -68
- biotite/structure/hbond.py +112 -93
- biotite/structure/info/__init__.py +0 -2
- biotite/structure/info/atoms.py +10 -11
- biotite/structure/info/bonds.py +41 -43
- biotite/structure/info/ccd.py +4 -5
- biotite/structure/info/groups.py +1 -3
- biotite/structure/info/masses.py +5 -10
- biotite/structure/info/misc.py +1 -1
- biotite/structure/info/radii.py +20 -20
- biotite/structure/info/standardize.py +15 -26
- biotite/structure/integrity.py +18 -71
- biotite/structure/io/__init__.py +3 -4
- biotite/structure/io/dcd/__init__.py +1 -1
- biotite/structure/io/dcd/file.py +22 -20
- biotite/structure/io/general.py +47 -61
- biotite/structure/io/gro/__init__.py +1 -1
- biotite/structure/io/gro/file.py +73 -72
- biotite/structure/io/mol/__init__.py +1 -1
- biotite/structure/io/mol/convert.py +8 -11
- biotite/structure/io/mol/ctab.py +37 -36
- biotite/structure/io/mol/header.py +14 -10
- biotite/structure/io/mol/mol.py +9 -53
- biotite/structure/io/mol/sdf.py +47 -50
- biotite/structure/io/netcdf/__init__.py +1 -1
- biotite/structure/io/netcdf/file.py +24 -23
- biotite/structure/io/pdb/__init__.py +1 -1
- biotite/structure/io/pdb/convert.py +32 -20
- biotite/structure/io/pdb/file.py +151 -172
- biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so +0 -0
- biotite/structure/io/pdbqt/__init__.py +1 -1
- biotite/structure/io/pdbqt/convert.py +17 -11
- biotite/structure/io/pdbqt/file.py +128 -80
- biotite/structure/io/pdbx/__init__.py +1 -2
- biotite/structure/io/pdbx/bcif.py +36 -44
- biotite/structure/io/pdbx/cif.py +64 -62
- biotite/structure/io/pdbx/component.py +10 -16
- biotite/structure/io/pdbx/convert.py +235 -246
- biotite/structure/io/pdbx/encoding.cpython-310-darwin.so +0 -0
- biotite/structure/io/trajfile.py +76 -93
- biotite/structure/io/trr/__init__.py +1 -1
- biotite/structure/io/trr/file.py +12 -15
- biotite/structure/io/xtc/__init__.py +1 -1
- biotite/structure/io/xtc/file.py +11 -14
- biotite/structure/mechanics.py +9 -11
- biotite/structure/molecules.py +3 -4
- biotite/structure/pseudoknots.py +53 -67
- biotite/structure/rdf.py +23 -21
- biotite/structure/repair.py +137 -86
- biotite/structure/residues.py +26 -16
- biotite/structure/sasa.cpython-310-darwin.so +0 -0
- biotite/structure/{resutil.py → segments.py} +24 -23
- biotite/structure/sequence.py +10 -11
- biotite/structure/sse.py +100 -119
- biotite/structure/superimpose.py +39 -77
- biotite/structure/transform.py +97 -71
- biotite/structure/util.py +11 -13
- biotite/version.py +2 -2
- biotite/visualize.py +69 -55
- {biotite-0.41.2.dist-info → biotite-1.0.0.dist-info}/METADATA +5 -5
- biotite-1.0.0.dist-info/RECORD +322 -0
- biotite/structure/io/ctab.py +0 -72
- biotite/structure/io/mmtf/__init__.py +0 -21
- biotite/structure/io/mmtf/assembly.py +0 -214
- biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/convertarray.pyx +0 -341
- biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.pyx +0 -501
- biotite/structure/io/mmtf/decode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.pyx +0 -152
- biotite/structure/io/mmtf/encode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.pyx +0 -183
- biotite/structure/io/mmtf/file.py +0 -233
- biotite/structure/io/npz/__init__.py +0 -20
- biotite/structure/io/npz/file.py +0 -152
- biotite/structure/io/pdbx/legacy.py +0 -267
- biotite/structure/io/tng/__init__.py +0 -13
- biotite/structure/io/tng/file.py +0 -46
- biotite/temp.py +0 -86
- biotite-0.41.2.dist-info/RECORD +0 -340
- {biotite-0.41.2.dist-info → biotite-1.0.0.dist-info}/WHEEL +0 -0
- {biotite-0.41.2.dist-info → biotite-1.0.0.dist-info}/licenses/LICENSE.rst +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: biotite
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: A comprehensive library for computational molecular biology
|
|
5
5
|
Project-URL: homepage, https://www.biotite-python.org
|
|
6
6
|
Project-URL: repository, https://github.com/biotite-dev/biotite
|
|
@@ -37,7 +37,7 @@ License: BSD 3-Clause License
|
|
|
37
37
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
38
38
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
39
39
|
License-File: LICENSE.rst
|
|
40
|
-
Classifier: Development Status ::
|
|
40
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
41
41
|
Classifier: Intended Audience :: Developers
|
|
42
42
|
Classifier: Intended Audience :: Science/Research
|
|
43
43
|
Classifier: License :: OSI Approved :: BSD License
|
|
@@ -49,9 +49,10 @@ Classifier: Programming Language :: Python :: 3
|
|
|
49
49
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
50
50
|
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
51
51
|
Requires-Python: >=3.10
|
|
52
|
+
Requires-Dist: biotraj<2.0,>=1.0
|
|
52
53
|
Requires-Dist: msgpack>=0.5.6
|
|
53
54
|
Requires-Dist: networkx>=2.0
|
|
54
|
-
Requires-Dist: numpy
|
|
55
|
+
Requires-Dist: numpy>=1.25
|
|
55
56
|
Requires-Dist: requests>=2.12
|
|
56
57
|
Provides-Extra: test
|
|
57
58
|
Requires-Dist: pytest; extra == 'test'
|
|
@@ -80,7 +81,7 @@ This package bundles popular tasks in computational molecular biology
|
|
|
80
81
|
into a uniform *Python* library.
|
|
81
82
|
It can handle a major part of the typical workflow
|
|
82
83
|
for sequence and biomolecular structure data:
|
|
83
|
-
|
|
84
|
+
|
|
84
85
|
- Searching and fetching data from biological databases
|
|
85
86
|
- Reading and writing popular sequence/structure file formats
|
|
86
87
|
- Analyzing and editing sequence/structure data
|
|
@@ -116,7 +117,6 @@ Installation
|
|
|
116
117
|
|
|
117
118
|
Some functions require some extra packages:
|
|
118
119
|
|
|
119
|
-
- **mdtraj** - Required for trajetory file I/O operations.
|
|
120
120
|
- **matplotlib** - Required for plotting purposes.
|
|
121
121
|
|
|
122
122
|
*Biotite* can be installed via *Conda*...
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
biotite-1.0.0.dist-info/RECORD,,
|
|
2
|
+
biotite-1.0.0.dist-info/WHEEL,sha256=k2WKrLNKjGuHO_hvWS6l3sv9zOlFA5Qqts5NR1BJtKk,105
|
|
3
|
+
biotite-1.0.0.dist-info/METADATA,sha256=C6tIVbg8HfB-DgcNYsM7sb56iNpH-n4EulEWtL_-2fQ,7111
|
|
4
|
+
biotite-1.0.0.dist-info/licenses/LICENSE.rst,sha256=ZuNQuB65Dxf0rDB_5LxvA4SVQJBWxRZyvbjbvE-APWY,1534
|
|
5
|
+
biotite/version.py,sha256=DGJ4pj32xs3_DRJhSzQwCiRNnAQrMgo09USYpyMZsKc,411
|
|
6
|
+
biotite/copyable.py,sha256=C7ycTQxqanxT0SmXhzy5OLp7NpZdNWHyokozdoVDGNA,1897
|
|
7
|
+
biotite/__init__.py,sha256=rL8ZyaCUjOrECEvRxyHj8MOMp4FHMJ8n6KKgrYf5OAQ,545
|
|
8
|
+
biotite/visualize.py,sha256=EYUBKgeNrkPI53f7L4T893NMmLWgBp07aO2XFcdpYTU,10012
|
|
9
|
+
biotite/file.py,sha256=TQLcN1FzEbEEOLdR0RUfHr9WPIkmULifHG_LoEWZV3w,6524
|
|
10
|
+
biotite/database/error.py,sha256=3xyutl2nPzgBZqe5fpejOp6AQXAvtxO2hy_oWRrlcKI,410
|
|
11
|
+
biotite/database/__init__.py,sha256=C_7zQxecZAB_x-4F_3JtU86TnB2GuxQju2mwfnLLy1M,725
|
|
12
|
+
biotite/database/entrez/check.py,sha256=5ITmnDoV6-lmfxux-HpXCUjcnI0dyYBwr-mqGkIb5e0,1853
|
|
13
|
+
biotite/database/entrez/query.py,sha256=D9f7nY6eCrVTMduDkskXmAAgRA4r11TY3gpkH2UokFA,7374
|
|
14
|
+
biotite/database/entrez/key.py,sha256=JS9GxvUMSYYmb2wU5uQduKUjITXRfY62aFyUH7_OMTU,1112
|
|
15
|
+
biotite/database/entrez/download.py,sha256=RsB1xgcVSY_fjM1v2CMGwjImWG5e5qFg4_pttdgBxq4,7376
|
|
16
|
+
biotite/database/entrez/__init__.py,sha256=-hAxLc_DdszhiCj6OO_jgSY-xmD05rC4urdUNHusr4s,388
|
|
17
|
+
biotite/database/entrez/dbnames.py,sha256=57WUYPlTtPRne74fypNgFnE0cl91_WSRwzkoQsGjR6Q,2620
|
|
18
|
+
biotite/database/uniprot/check.py,sha256=7ShClNBBHZkKw09Cewl4drr4C0we7oFGJGHBbgINt50,1292
|
|
19
|
+
biotite/database/uniprot/query.py,sha256=dXjrBTeqpfrVOSoHVN4vdbZYR4ZtNvZTf0v_WfVwi4k,7563
|
|
20
|
+
biotite/database/uniprot/download.py,sha256=MZan2nFyYWSWgFL-VU3MOJOwp6g9h25_65zFfBr-Kww,4320
|
|
21
|
+
biotite/database/uniprot/__init__.py,sha256=Lsk5Jd-qb5167VTgN48lWSSbqpjCM-fD0XKJyxaZb7o,334
|
|
22
|
+
biotite/database/pubchem/error.py,sha256=_-SE2w-Jx5HqL8ll5deiaXAKAeEPC0ysSG6F3Mm8AGA,713
|
|
23
|
+
biotite/database/pubchem/query.py,sha256=czvfK8KttZQviw65NsdYFqt-IECW77cN6TrocU7d8oA,26448
|
|
24
|
+
biotite/database/pubchem/download.py,sha256=5Se2dU0jB0MPrfCfwuwDDUgO_k7BkRqegDl9c_76IGw,9867
|
|
25
|
+
biotite/database/pubchem/__init__.py,sha256=xjwfutIL4-JeTs7v4wCkRyy5q4KE7fGWDvo46ubkXt4,669
|
|
26
|
+
biotite/database/pubchem/throttle.py,sha256=HXf2l7EW5RLdW0bg72uSdXCDZXFXOE49akhfgKhEdc8,3286
|
|
27
|
+
biotite/database/rcsb/query.py,sha256=ztyNlUs72vwjdG3Ci1Mj6UTJb9yupcRray8pYogPbw8,32902
|
|
28
|
+
biotite/database/rcsb/download.py,sha256=8q0yA5LL9avzWpy1I6s-59VRHg3mhuJltIldEN5CmU0,5622
|
|
29
|
+
biotite/database/rcsb/__init__.py,sha256=sTJnL4vYwhO7gSszMuT_Lr91uwX0wM1h-fZWiZkITYA,332
|
|
30
|
+
biotite/application/util.py,sha256=zDxqVUWcINdTgnLMdC004GXygIUeYWSemwEALk8xrGo,2095
|
|
31
|
+
biotite/application/localapp.py,sha256=uvktgVp67gAyus4LR6dXjEc23y8M5n_K5e-ncWzwx-c,9286
|
|
32
|
+
biotite/application/webapp.py,sha256=ysKcsdAPlOZVMq3aCHVD8VdGyrrFjEDklMre6aytSTs,2161
|
|
33
|
+
biotite/application/__init__.py,sha256=gOy5iGp5uuKTd0qpR9LgsmanB3ZfdQaTnZcKMRDwSx8,3079
|
|
34
|
+
biotite/application/application.py,sha256=KbrqhjBLtkjEix0puJ9VpLQoc3vs4hQZ1kW5O1c55vw,8098
|
|
35
|
+
biotite/application/msaapp.py,sha256=hDoyPyDjJVt0qQSZLlR7DLSA0uJ3qTmAke-dP725_ik,11976
|
|
36
|
+
biotite/application/dssp/__init__.py,sha256=lUf-A2rJzPLJYZQZGpZUt7HtA0M59KaX6zQSCrkhfF4,323
|
|
37
|
+
biotite/application/dssp/app.py,sha256=zhuHcUihTz9b9iOcYJ8ROAPYu-_0gW61d5fEXle2fHI,4840
|
|
38
|
+
biotite/application/viennarna/rnaalifold.py,sha256=DmsHVi18izXS0ee6FN6MfgrCEScw9v9qSvkGOjHs8IU,10608
|
|
39
|
+
biotite/application/viennarna/util.py,sha256=4jvZRRBSxPHzT9HJ9jooUzarUg5JTzDMoQASuBvTSqI,2634
|
|
40
|
+
biotite/application/viennarna/__init__.py,sha256=m2obwXBnkDzRDzjrffsGdnp7YxAFz6CctsSmmg03xVI,473
|
|
41
|
+
biotite/application/viennarna/rnaplot.py,sha256=IPZ-AOMwblQHoF1Y6xBtN84RqWfDMkMpn8Kiws-7w4E,6327
|
|
42
|
+
biotite/application/viennarna/rnafold.py,sha256=Tr6VfGLkzNhcGujND_k5XUb9uYAMsysnDWQ6oTcIamE,7910
|
|
43
|
+
biotite/application/sra/__init__.py,sha256=8I-uPkWUiu_ePPp56mI8MkwIOnjjQODpH0YMeOh8Leg,553
|
|
44
|
+
biotite/application/sra/app.py,sha256=llsaWNJJaZpvTL1AOl4xWOdsv84AmQaT5LRnWqGii4Q,15864
|
|
45
|
+
biotite/application/autodock/__init__.py,sha256=EhnSP7PGczduv0J0FovH34g49-ruQVHrRWyfz5F0ZCY,315
|
|
46
|
+
biotite/application/autodock/app.py,sha256=u-ini9dbq6vkpMQfc28HdyNNxbK-DKoQmHEmSHQ1hn4,18686
|
|
47
|
+
biotite/application/blast/alignment.py,sha256=r9CfjvHcDCqOrR6YC-IWXq8l76qujYAz4xFfb65sfSo,3117
|
|
48
|
+
biotite/application/blast/webapp.py,sha256=TdM-QSIk08O9o1wbqvQhbSGQWOrFZwO9UKvPE-2nE0U,14463
|
|
49
|
+
biotite/application/blast/__init__.py,sha256=hZ031_9ikNQ7j87uaW5OAWbUx3R4qtqpyI1ff8lDTMM,366
|
|
50
|
+
biotite/application/tantan/__init__.py,sha256=jkRIs_OYhF3pSd5EXrnfbFc7S96a_F87hq2pXk3BxHo,328
|
|
51
|
+
biotite/application/tantan/app.py,sha256=4tTLuTEy46nGsyy5wvDrB49fXjjV3SpnEXN6y6QXxTQ,7438
|
|
52
|
+
biotite/application/mafft/__init__.py,sha256=VQPqkbQPAvGePLTb-Kgd1exMxDT5onbab34ukX7fiNk,315
|
|
53
|
+
biotite/application/mafft/app.py,sha256=gzcJZdUs5Qys0aK1uAcsMNrBB4sIjbju4Sc1hJ3JPh4,3281
|
|
54
|
+
biotite/application/clustalo/__init__.py,sha256=nHtEaPTQU3oXfZZhe9TyA55NzFknFyAkALLuEn-C6ys,326
|
|
55
|
+
biotite/application/clustalo/app.py,sha256=JdICuA14SHdiuYPt6Y1cc1d6zHTNZaXzoPk_y0Nb5H0,7417
|
|
56
|
+
biotite/application/muscle/app3.py,sha256=-T6AmkGlBE0EAxp3ZG--tvcxUVBTkBdr7W5qzUrDTXE,8085
|
|
57
|
+
biotite/application/muscle/__init__.py,sha256=B1JrhQYjgwSKWxpcYgXS91f2GM5Tc1i9Ocs2wElslRs,338
|
|
58
|
+
biotite/application/muscle/app5.py,sha256=cjK26uAcL3dblyxa8WzfJE8FXzo3FZ0p5jn8ttu8YNc,4426
|
|
59
|
+
biotite/sequence/annotation.py,sha256=b0A1_NciOz2g3PEG0AgIcNC5XXmHap2PScbIpyKO0v8,29513
|
|
60
|
+
biotite/sequence/codec.pyx,sha256=ed415FTMBJfiI9WbgKRFO3tF1f_SpRHxyEafLxW-g1k,4962
|
|
61
|
+
biotite/sequence/sequence.py,sha256=6k2WVEd4JX4pnTQ-nbtrhvLBCVEaTpsETfsiCBD5Cfk,11693
|
|
62
|
+
biotite/sequence/codec.cpython-310-darwin.so,sha256=MSQTbf9cH5CLxlnixMOSyohHXcX4SOUySUisDzMcj4Q,285992
|
|
63
|
+
biotite/sequence/profile.py,sha256=VtRfHP3f4Ymw7tgV5wPvde22nH1KwOkkKXToHLkbl5Q,17126
|
|
64
|
+
biotite/sequence/codon_tables.txt,sha256=zZLT642H4qEkwUk5g-hWh-6ZWP_bgaz70fWcxwJDWJ0,10209
|
|
65
|
+
biotite/sequence/__init__.py,sha256=fSWhobaPGRMJI6-8UYFpjguxVtP4O4cAHmiRxNAGzYI,3423
|
|
66
|
+
biotite/sequence/seqtypes.py,sha256=zdj3fFkb_EDB0T4rqQuq-ErtX6TcFiP8kZ0tWINibnI,19346
|
|
67
|
+
biotite/sequence/codon.py,sha256=6SBjwz4c6IZiAFZL03qjcrjT84zczltc14haOOAkm6Q,16392
|
|
68
|
+
biotite/sequence/search.py,sha256=dF-OtPocZ5XAIgS4GCMt2YOKz0Oxb9b8FvPmVUY8j-k,3089
|
|
69
|
+
biotite/sequence/alphabet.py,sha256=OiUxnsbTaxuDjAiB96sVHYTOqG3XvwF5ceJ3tvViqh4,17190
|
|
70
|
+
biotite/sequence/io/__init__.py,sha256=4K13uxFWe8IpNC8yuVxjDiI7-8lmXu7qT6iMmVSqPs4,314
|
|
71
|
+
biotite/sequence/io/general.py,sha256=sD03pLnkxsT6vFh8806ZhErC8GEG3LF_70NMcVJyGe0,6694
|
|
72
|
+
biotite/sequence/io/fasta/convert.py,sha256=m1uWLtCfdzI-to5WLxqiQrQKtWKBDyr14qE_54x0jLk,9421
|
|
73
|
+
biotite/sequence/io/fasta/__init__.py,sha256=rcpXd-Mzp-qCJC2zW3O8XSgpcefOq8ftFLvvnuYL3ec,720
|
|
74
|
+
biotite/sequence/io/fasta/file.py,sha256=46NZiI32mqNMAzej8y6uUyCtW-gRtoxWg1v54VteDbs,9055
|
|
75
|
+
biotite/sequence/io/gff/convert.py,sha256=6ye_ObtHfZbBoazyXqhRXhCVmLrqq65_lraSIeZDBQM,4614
|
|
76
|
+
biotite/sequence/io/gff/__init__.py,sha256=KPWsE4Hjd4QY2prhi4W4WmwW-z_kySy0ZiUOSnmyGy4,923
|
|
77
|
+
biotite/sequence/io/gff/file.py,sha256=OxQgja-LVAYVRc1tSB5t_1mYenvNX5SJ8VtMV37Y0l0,16096
|
|
78
|
+
biotite/sequence/io/genbank/annotation.py,sha256=t39bqsDmLyLBTS_wc15uGOVsqJ-GRP3iXGIqJBxzUow,9431
|
|
79
|
+
biotite/sequence/io/genbank/metadata.py,sha256=rhLF30_RSluJ-sulsKpUjqHNqVazvkn98fTCCoATAXs,9351
|
|
80
|
+
biotite/sequence/io/genbank/sequence.py,sha256=2iz6gBZEPOqyDI2BOHeeR7poad2G8in1uKcy67z6pXM,5419
|
|
81
|
+
biotite/sequence/io/genbank/__init__.py,sha256=9H6gHYLBtZ06YkT616wwJF89G1sFToSs0QRuQ8noZBQ,473
|
|
82
|
+
biotite/sequence/io/genbank/file.py,sha256=UQDvUUqftl7g5mMHPVrhzNzZEai8fmKDXlTfB-EifzY,20366
|
|
83
|
+
biotite/sequence/io/fastq/convert.py,sha256=x4rWn7WHdKxW1u7mwDgM8Z3qaML4lAO7r-JiMTQbvaI,3632
|
|
84
|
+
biotite/sequence/io/fastq/__init__.py,sha256=lhw9bxWS0eKPXzF1lg8fvrNmgAmJPLBzIB6jEP5GOVI,588
|
|
85
|
+
biotite/sequence/io/fastq/file.py,sha256=OwSUw-Unp8AQc7LdpJSI2zmavBWsCcqov23HPHWaXQU,17816
|
|
86
|
+
biotite/sequence/align/matrix.py,sha256=6N0b6j1MOBrFMnSdX83sWZqGH0e5_dFfIVEhGglbSBI,12720
|
|
87
|
+
biotite/sequence/align/permutation.pyx,sha256=xbbw5DJ7c5SXnuSUl2hJUMxzvinKP1Khc7CSdH5cEE0,10028
|
|
88
|
+
biotite/sequence/align/selector.pyx,sha256=13MYCmECOYFGoMQHgCRgKKeN74VOUSc0TnZuqRJhBo0,33471
|
|
89
|
+
biotite/sequence/align/primes.txt,sha256=7pKfLGN1vjYl_KJ3y5uuo8np_5DDUH52UAkhb3fJfWE,10140
|
|
90
|
+
biotite/sequence/align/kmersimilarity.cpython-310-darwin.so,sha256=VeDLglIFzGRoNKQp7JzZLv4a8Bde2IJXM0ADIjtpoao,232184
|
|
91
|
+
biotite/sequence/align/kmeralphabet.pyx,sha256=J8I33f6AT8vhCNeW7tuZERqbCCC7Z9baC0RCrF01_zk,18115
|
|
92
|
+
biotite/sequence/align/tracetable.cpython-310-darwin.so,sha256=ZwZ9POLW_5KaMC-WlkwXKEhogtOIEq2i6suMDQZXfH4,204240
|
|
93
|
+
biotite/sequence/align/alignment.py,sha256=XxFE0tdH37oiWcxfcbPYt25d2S3MePan7RY6fl8noP0,21351
|
|
94
|
+
biotite/sequence/align/selector.cpython-310-darwin.so,sha256=0S2HBNSq02L6KIFY3V4ru1ClcWTh81wRs4qVuBdg3f0,330864
|
|
95
|
+
biotite/sequence/align/kmeralphabet.cpython-310-darwin.so,sha256=klwP_jiKYg1O2Hitp2D_2PoNPWHpxNdq-Zji36mIQTU,395184
|
|
96
|
+
biotite/sequence/align/tracetable.pyx,sha256=1gsT3OV7VkE6i_UpNiYOLVvD2_tfJgbNZb1yv9F4XR8,15455
|
|
97
|
+
biotite/sequence/align/pairwise.pyx,sha256=88bZUcDG3CflZPdUN_HMJaIMTKCAtBhmhq946tY__KE,22836
|
|
98
|
+
biotite/sequence/align/__init__.py,sha256=Twwj35DdxgKu9pN84u2PEtwo6MekLENbkaGbAPxB2A4,4715
|
|
99
|
+
biotite/sequence/align/kmertable.cpython-310-darwin.so,sha256=kpzuuvChO9KYXEW3HLa7gNio7ZJ6EmX_bC5-6Aa44uw,727616
|
|
100
|
+
biotite/sequence/align/localungapped.pyx,sha256=rj6gbuyLQIo6ZuPwVt01rs3fOSOjpzq6Vx3v6_zKdEQ,9696
|
|
101
|
+
biotite/sequence/align/buckets.py,sha256=k8H5RBS5Y7DrMoIOd5Ifrxp-nYWosJuqOYgLd1y-DWs,2464
|
|
102
|
+
biotite/sequence/align/localgapped.pyx,sha256=djdmgvACXde0dyqbKttc4itgu0MNh7aF0U9L6tHTZXM,33385
|
|
103
|
+
biotite/sequence/align/cigar.py,sha256=HGHelQe2SH4SdKjcyTmVlvrlllFzDtpiysskFcclIW4,14285
|
|
104
|
+
biotite/sequence/align/pairwise.cpython-310-darwin.so,sha256=B3E509qHK_8X86H_Ft0AQ48WGXw4RNrSK1bW33fcyAY,561536
|
|
105
|
+
biotite/sequence/align/tracetable.pxd,sha256=_VP1ayP6FZL1Tzn1pCCbt6xPZDzFtE9bH0Gvop2lxyQ,2825
|
|
106
|
+
biotite/sequence/align/banded.cpython-310-darwin.so,sha256=r6Zk8LlxkCYLCk40jsCBf-4iPLtX2MR-_4ABhgs_qq4,524528
|
|
107
|
+
biotite/sequence/align/localgapped.cpython-310-darwin.so,sha256=t-bn-yGrUQPDRfu8zcQ4HxQFR8ii8aWWE-K2JStPZSc,1184512
|
|
108
|
+
biotite/sequence/align/kmertable.pyx,sha256=6f-ifIWbICKP_ZAItxPqgjQVBoyId5bT2g6-dIO0zS4,121334
|
|
109
|
+
biotite/sequence/align/multiple.pyx,sha256=cUnbuAfYBp_Kt4Y7LeuPeuBiRdyu1D694i1kQIsUqPM,21965
|
|
110
|
+
biotite/sequence/align/localungapped.cpython-310-darwin.so,sha256=6L-prGCaovCFKDjmp0I94zH3VBJU599u5VBmTTUjNUQ,306064
|
|
111
|
+
biotite/sequence/align/statistics.py,sha256=98Vaz__s_8GltcMwfErNuKQfXuFKZCq-i1XWkJ_iAMQ,9655
|
|
112
|
+
biotite/sequence/align/permutation.cpython-310-darwin.so,sha256=i75oZdqG9hRB_sUxCjzXZxZvv507ENC8tSz2_-6kaSM,236160
|
|
113
|
+
biotite/sequence/align/multiple.cpython-310-darwin.so,sha256=XX9E6RvuKMeAcCoG7mxwvobz24LwxEg89RefRTSLp8Y,502864
|
|
114
|
+
biotite/sequence/align/banded.pyx,sha256=-5peQOsZHoe27GjZCWrlrVN6YxsCEQCn0HkpglxDsbU,25392
|
|
115
|
+
biotite/sequence/align/kmersimilarity.pyx,sha256=EBpz8R_fofRd4gsmBJLuH2qZgMWKlzQkCJ54w_-K7gQ,8433
|
|
116
|
+
biotite/sequence/align/matrix_data/PAM370.mat,sha256=ZD8BpkVrVK22_oLSXZb9d_kzNDfic_i0eVT1fUNkyBk,2068
|
|
117
|
+
biotite/sequence/align/matrix_data/PAM210.mat,sha256=UfUmaJ09ID11GUzuNeK7aUzgZTW1iJLizADnD0qT2BI,2067
|
|
118
|
+
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=j6FWyeTXvfpSR0ZGecI18MCATcjM_FTJ2XGoEjWg3Qg,2122
|
|
119
|
+
biotite/sequence/align/matrix_data/PAM80.mat,sha256=EQjS999W5zT3ltZxtjqNsdF54cED_KfiXMCr_0EdvHs,2666
|
|
120
|
+
biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat,sha256=VkfMzO1eMLvpj5x4iL_YAopkZpYEjvx0QnuveFoVnTg,1850
|
|
121
|
+
biotite/sequence/align/matrix_data/PAM40.mat,sha256=OAGOKH9t72qvn5P2ydSf3oPvy-XSiFH1vC_-a4hqEAs,2666
|
|
122
|
+
biotite/sequence/align/matrix_data/PAM400.mat,sha256=sdF4tBZUHl_WQA_YEhR46_TMkaqhsdfh6j4EzylYqKo,2068
|
|
123
|
+
biotite/sequence/align/matrix_data/PAM170.mat,sha256=a4eCSlODOitkpUjyysvm3A9WtVBN-S_IH3kjbG9AVtA,2668
|
|
124
|
+
biotite/sequence/align/matrix_data/PAM160.mat,sha256=87otpzOMs1nIbU_B5MvTpShSJ3iixYyHpAJttuwFeoY,2067
|
|
125
|
+
biotite/sequence/align/matrix_data/PAM410.mat,sha256=gtd1bfoNX8M8Ey4B266w7AyTVi0kD91NcF3KJVB6wcM,2669
|
|
126
|
+
biotite/sequence/align/matrix_data/PAM50.mat,sha256=L3wZ938pS5_dWww1UAITFNql0NaDyIDk4NrCK9Yz9Ww,2666
|
|
127
|
+
biotite/sequence/align/matrix_data/GONNET.mat,sha256=xNJHqcmqSFtO1fFCL7Q1rhr-MVsjPLi6yMmXJLQSUTU,1679
|
|
128
|
+
biotite/sequence/align/matrix_data/PAM90.mat,sha256=e-zxoVFQHxDoHT2_83SgzRnY88tT7_q8lg6Ikk3ioXs,2666
|
|
129
|
+
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=wt6Gkbx6KPazNoRXfedE-yXjH6Par0PXiVpFprenJGU,2122
|
|
130
|
+
biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat,sha256=WvizmTK3QOPODABlz6_X8YT4KgvMZKy_0PkbOthDpjA,1850
|
|
131
|
+
biotite/sequence/align/matrix_data/PAM200.mat,sha256=BUDVdPGRgVgxH552pwFA2WkO5QpM1gLLu6cgMiNhprs,2067
|
|
132
|
+
biotite/sequence/align/matrix_data/PAM360.mat,sha256=-TWC24-2AF5Tfsg64Sopiap34154wHIFmrSRQlDDTXo,2068
|
|
133
|
+
biotite/sequence/align/matrix_data/BLOSUM85.mat,sha256=olO7oxXaVtmNJNLCtacRvie-235EtZ63aDDV7fXY6c4,2122
|
|
134
|
+
biotite/sequence/align/matrix_data/CorBLOSUM57_14.3.mat,sha256=HafyyKYsVh9EJG869LAbqpVF5fMnZB-3uJV38EjlPR4,1850
|
|
135
|
+
biotite/sequence/align/matrix_data/BLOSUM90.mat,sha256=TebOIl7Y7oTgQcT2PC2vL0Oqhs3RsSCGgHTchJXHIU8,2122
|
|
136
|
+
biotite/sequence/align/matrix_data/PAM500.mat,sha256=C4uoSrH1V_DYYPH5VBF6mUf6l9hSfhQ4Xhrj11suGes,2070
|
|
137
|
+
biotite/sequence/align/matrix_data/PAM20.mat,sha256=Pdom13Fn6QDH_zCoJRA1fYlFnkSl0mVmoyZ7tRyQsk8,2666
|
|
138
|
+
biotite/sequence/align/matrix_data/PAM460.mat,sha256=BbV3cIcdHq-OxTXgjOEGJdboPOW77s49yLESURjLT1w,2069
|
|
139
|
+
biotite/sequence/align/matrix_data/PAM110.mat,sha256=A6diM61xaLeHh-ilFD0NSh7dqR5GSfxvyboLYWr9ctM,2066
|
|
140
|
+
biotite/sequence/align/matrix_data/PAM310.mat,sha256=WAMSfgRZyS_Q6pI5j34tN7V6kVHSA1zxVhSwJnZlZTM,2068
|
|
141
|
+
biotite/sequence/align/matrix_data/PAM270.mat,sha256=GHm5rgJf1aPdSxiUfIg8c4rO0_MssNR5EU4GCXUbdsk,2669
|
|
142
|
+
biotite/sequence/align/matrix_data/BLOSUM45.mat,sha256=GaB31QYKlKYhKtYJ3zA6JARjhzppaU6fV2xXYvv_2wk,2122
|
|
143
|
+
biotite/sequence/align/matrix_data/CorBLOSUM61_5.0.mat,sha256=-CAqsMmAh5593WHhcUr9i_idl4-dtrCX-oHY_4oTTCI,1850
|
|
144
|
+
biotite/sequence/align/matrix_data/BLOSUM50_13p.mat,sha256=vh0DKMYb6Zqg31fqVhlObTWhk8LJgevlI8VlQmnXOO0,1850
|
|
145
|
+
biotite/sequence/align/matrix_data/BLOSUM50.mat,sha256=oVLjC4r8q0IoH_hgS8UTWL6YJTFV_eYq4gcHgFoNPWc,2122
|
|
146
|
+
biotite/sequence/align/matrix_data/BLOSUM40.mat,sha256=GiFTkaezFzIoLRmaejU0lEmOrQhCxNzf7KrPY4kRdlg,2122
|
|
147
|
+
biotite/sequence/align/matrix_data/PAM260.mat,sha256=9jEd8LFi-qjASOb72oNHpo_l-pDXq3JjLnRfOCm3jFQ,2068
|
|
148
|
+
biotite/sequence/align/matrix_data/BLOSUM55.mat,sha256=lIELun4-b77M0Sv5VekXhCZcFW97ruo1NIKv_rdrPiY,2122
|
|
149
|
+
biotite/sequence/align/matrix_data/PAM300.mat,sha256=fzIOK3tBJvxAPm3eBUENzQSDblSyqghJwwc6wYUGQfc,2068
|
|
150
|
+
biotite/sequence/align/matrix_data/NUC.mat,sha256=xgPkb5oVn7RRYyzfn5xoe659qtsw-yZF9f0Jys5wdJA,1171
|
|
151
|
+
biotite/sequence/align/matrix_data/PAM100.mat,sha256=AFv8yYX7JO8xsvpktGbFIHxmfp0HCmb-cDqUmEmbkF4,2066
|
|
152
|
+
biotite/sequence/align/matrix_data/PAM470.mat,sha256=iWeG55pioMzuzbuPsmUECPlzowP63Ttgdnq9cKP0gEQ,2671
|
|
153
|
+
biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat,sha256=aGEwU0vk_MOeDN_7u9eOO4DnYjWoEKk6DgxZCgb9HxU,1850
|
|
154
|
+
biotite/sequence/align/matrix_data/PAM30.mat,sha256=j8VojReY4jJuqzcZue6SmZUqIMlDTkxVKL9FMuRYbmM,2666
|
|
155
|
+
biotite/sequence/align/matrix_data/BLOSUM80.mat,sha256=LllxdrgJKAi6GZz8nYDcjWV7Wj5QFd-4HVVyhYGc4Yc,2124
|
|
156
|
+
biotite/sequence/align/matrix_data/CorBLOSUM66_13p.mat,sha256=MmqiM1WZTAN9DX5wxt-8pI1uoEXDgbCStUhwAyXoSlI,1850
|
|
157
|
+
biotite/sequence/align/matrix_data/PAM130.mat,sha256=Bs6sHk5rIbjwfffBuYSDk85LtDSsSSnJM2JT3ezw_P4,2067
|
|
158
|
+
biotite/sequence/align/matrix_data/PAM440.mat,sha256=bF2DkFSgljfdj3hJMbGngQ62uGks7s0_TaCPWBcf6LI,2068
|
|
159
|
+
biotite/sequence/align/matrix_data/PAM290.mat,sha256=pCavYvRBDo9CQLsKDhuwmxyfkV8XROjQISulxSjMfFA,2068
|
|
160
|
+
biotite/sequence/align/matrix_data/BLOSUMN.mat,sha256=YszKvjUBwH8YWd8z5xILKFvUMu1cvL1wHkTiOH1dMcY,2121
|
|
161
|
+
biotite/sequence/align/matrix_data/CorBLOSUM67_14.3.mat,sha256=_ceD-DlNi1VJsUBdxQFffeMbBaYS0fLO2dDPHHi1d_Q,1850
|
|
162
|
+
biotite/sequence/align/matrix_data/BLOSUM62_13p.mat,sha256=4z-R_JXr0dl3gDY6OAXLB_GO71NVP4ibKhduRuFeTjc,1850
|
|
163
|
+
biotite/sequence/align/matrix_data/PAM480.mat,sha256=7eUrMblKu7oIAVUvINWGr8Xs2-eCA81TMUhP5m0QvwU,2671
|
|
164
|
+
biotite/sequence/align/matrix_data/BLOSUM70.mat,sha256=kl3LsfT3r8zCWRHW3sJjiBUP6S6xCSySRmHPOIhu9Hc,2122
|
|
165
|
+
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=Lj6_ayLvWa6148OKEtyHuOsd6hszb0suzDIpuY4XPJI,2174
|
|
166
|
+
biotite/sequence/align/matrix_data/PAM250.mat,sha256=k2zF7yPgJixf2vdNXYH1iEjrdMyg1b7w85bSexaJcE4,2068
|
|
167
|
+
biotite/sequence/align/matrix_data/BLOSUM65.mat,sha256=ZbjpdSsPq4yt3j-p1CbG4EkchKwNtTwk4nDanjKWdYs,2122
|
|
168
|
+
biotite/sequence/align/matrix_data/PAM330.mat,sha256=cUa0Kd14AWTjMcH9mU6VUIoKYSpKwV3N7PgPGuYJvtA,2068
|
|
169
|
+
biotite/sequence/align/matrix_data/BLOSUM50_14.3.mat,sha256=Ri8ORSV5rHnxJgtNiSJ7PIVTaaYThtMoUHJ4ym8ZSsI,1850
|
|
170
|
+
biotite/sequence/align/matrix_data/PAM320.mat,sha256=c1aHpd5_c05sUdVCXYPh0x7i2HLBbeesTXLE2O3q8Xw,2068
|
|
171
|
+
biotite/sequence/align/matrix_data/PAM240.mat,sha256=A0Gc2o7EZyP4KmHjDFavCR05FLPlDRfft_dpNPU_T4I,2068
|
|
172
|
+
biotite/sequence/align/matrix_data/BLOSUM75.mat,sha256=_nk7JXwGAiqRA4hbEKxihkdPGAxkVVd6UWDT-3J7oX8,2122
|
|
173
|
+
biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=KtQkagPYJQcovVafvPvEfahCw-Ohmm_Ck3chzWmI4Wc,1850
|
|
174
|
+
biotite/sequence/align/matrix_data/BLOSUM60.mat,sha256=iHPf06rge36Xi7k1uwFKwvTb_hHrGNL44TApk3C5Ss8,2122
|
|
175
|
+
biotite/sequence/align/matrix_data/PAM490.mat,sha256=34zBaxPzrPcsBEEIU5aiY2Zih5VIm2pXuaNVmMBzGd4,2070
|
|
176
|
+
biotite/sequence/align/matrix_data/BLOSUM62.mat,sha256=hVENOEbubV9HeOQlz42vbg27iJswby0TQ04SVHgO-0A,2122
|
|
177
|
+
biotite/sequence/align/matrix_data/PAM280.mat,sha256=rY1PexjhfsVxp_4qa7BMiv7_9xF95K2ePVE7i-iAFPM,2068
|
|
178
|
+
biotite/sequence/align/matrix_data/PAM10.mat,sha256=iQdTLbAqn58hp5TQ6NJus3C2Af5Ga11i7eJGK9LQjdo,2666
|
|
179
|
+
biotite/sequence/align/matrix_data/PAM450.mat,sha256=fboz1GEu55EwZPMG0gl6fFFiWojvz8rbZxcl6ziWNCQ,2068
|
|
180
|
+
biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=3q0VPjzTta9EUt7JFlIvJApplOilUrcbg275Xx4tmJY,1850
|
|
181
|
+
biotite/sequence/align/matrix_data/PAM120.mat,sha256=6tNjpzRcyzDXtNz144uTYI1LtlQHMoffi6rc2uLU8pU,2067
|
|
182
|
+
biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat,sha256=GUiQ63AMTP91d5poXhaUN1Pgv-8nb3B_kvQzOKmwEMk,1850
|
|
183
|
+
biotite/sequence/align/matrix_data/PAM190.mat,sha256=h-CbsySNQqW2YCS67ptA5CktzqP6hRqvud6dXXYnvVg,2067
|
|
184
|
+
biotite/sequence/align/matrix_data/DAYHOFF.mat,sha256=qYkUgQ37EYTawAjc52vbPNJOfC9LYo_vmuX-Arsa2mg,2081
|
|
185
|
+
biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=mPlyPQkz3RID3iT4XxYMDmyLfEya7sCV6t5BGdg665I,1850
|
|
186
|
+
biotite/sequence/align/matrix_data/PAM230.mat,sha256=kpdHawONOvHXHJgUnkPMFRikSyqjtU1Rucp_foRV6Jc,2068
|
|
187
|
+
biotite/sequence/align/matrix_data/PAM350.mat,sha256=gGMAQ5oeI29qv2GkXcg4NBvueP0ylj1CBPj4J1W7Wkg,2669
|
|
188
|
+
biotite/sequence/align/matrix_data/PAM150.mat,sha256=1Jbj7ITgahFFbjGbD3dS0WXrYL2HmSYj9_6ITsgNSWQ,2067
|
|
189
|
+
biotite/sequence/align/matrix_data/PAM420.mat,sha256=v02OOl9-ZTthEs0UQXdu_olwV7vzcVhlweDKUnUdQfU,2669
|
|
190
|
+
biotite/sequence/align/matrix_data/PAM60.mat,sha256=IKL_uHSfVKnGPTxq3TTh78Z6Q4Pw_Um39V8Uz6ACTkE,2666
|
|
191
|
+
biotite/sequence/align/matrix_data/IDENTITY.mat,sha256=ZayOMxt7zidr8C0JRiG3knc5XT2F718W3PT4G15AZv4,4057
|
|
192
|
+
biotite/sequence/align/matrix_data/PAM390.mat,sha256=EUdmTuLyEY9VF-OcexBlglFhHEks4yzolczpRsXN4ek,2068
|
|
193
|
+
biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat,sha256=LBEV4ormPIv1WntfL4RZt4Pi0He9xYY1zq3iWLXi_fU,1850
|
|
194
|
+
biotite/sequence/align/matrix_data/MATCH.mat,sha256=ZSRUBke-2jfozrFVZK5xmGjcKv4GGAcSq9h7PgNmSME,1850
|
|
195
|
+
biotite/sequence/align/matrix_data/BLOSUM62_14.3.mat,sha256=X6FYu0KwcgQBEo93S7ZbmcZeL86he_ak0XVa-r8lJ58,1850
|
|
196
|
+
biotite/sequence/align/matrix_data/PAM380.mat,sha256=5Bt7fOVfU2vRNR5IHvxFwgRwYgOOqYpdElMMrK-e0HQ,2068
|
|
197
|
+
biotite/sequence/align/matrix_data/PAM70.mat,sha256=0YDiLYDyWtpBLW62MHD-cifJVHxmc3Jykf2bLUUpRuU,2666
|
|
198
|
+
biotite/sequence/align/matrix_data/PAM430.mat,sha256=PxW4F20F3-ArQgqb8jdemeGw4Q7FKd1P055_sOrKZKg,2068
|
|
199
|
+
biotite/sequence/align/matrix_data/BLOSUM50_5.0.mat,sha256=radLsoMzRcgXzX0ZwDShU44I3qRLskMU91lf6V5MTws,1850
|
|
200
|
+
biotite/sequence/align/matrix_data/PAM140.mat,sha256=0ZOMbK_5afy-zU8BOL9UkxEkX3DjfD6t-LJGT0H8f-o,2067
|
|
201
|
+
biotite/sequence/align/matrix_data/PAM340.mat,sha256=9rV5CU441SuU-MhTIOFBHbg2i6b2NZJ2GfemgAeQUQA,2068
|
|
202
|
+
biotite/sequence/align/matrix_data/PAM220.mat,sha256=58FW5l4TkLX5rUALdt0rrOXQWGqGlatGJjaZcN3HHYM,2067
|
|
203
|
+
biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat,sha256=m3Es9ILTi5vCKAKjV40dLrJpZ8I0n7QaueKi0tNa1NI,1850
|
|
204
|
+
biotite/sequence/align/matrix_data/PAM180.mat,sha256=mll_lIfL8oBzNlNcEhoh6ULv9lKG-HTBanUyJhzDO-U,2668
|
|
205
|
+
biotite/sequence/graphics/alignment.py,sha256=WpTyskbya6x9ergwAKbTxQ-YxbxgfM2AwvPfw2E0FKs,39530
|
|
206
|
+
biotite/sequence/graphics/__init__.py,sha256=9o7zvUaCzuEhYzr1_dj1SID2EaQky2fSxVF7NkGoHC0,1152
|
|
207
|
+
biotite/sequence/graphics/features.py,sha256=HzS434k_kKrd7hzCQlPeQH3_YQg3Y3fRx2k9n3LZ9FE,17295
|
|
208
|
+
biotite/sequence/graphics/plasmid.py,sha256=_cP1pHLzWgS66UIhMSAuWD5JWP0SmBzWjPBJxHgR3Fc,26002
|
|
209
|
+
biotite/sequence/graphics/dendrogram.py,sha256=11BkMkXQFCZY-OC2mTnhfiS53RLtH_Gz38tMYDAx-To,7592
|
|
210
|
+
biotite/sequence/graphics/logo.py,sha256=6xhkspwu2Mbjo9aabw0gXgbcNqOdB9tw4IzPYMgzo0Y,3819
|
|
211
|
+
biotite/sequence/graphics/colorschemes.py,sha256=nWibKN0L-NQkVCnj3Psx0SX6Zv1hpDZeb-NLTOZO3o0,4473
|
|
212
|
+
biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json,sha256=FTwFLJ049NH4CFS0B5OaXtmySkE6yiluenixoNSaZSM,785
|
|
213
|
+
biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=C5imi4gVjtS0HVV6yQK3MOgNuOi1SPCnGDHiYqqbaU4,753
|
|
214
|
+
biotite/sequence/graphics/color_schemes/wither.json,sha256=6dq-9koLqk6ec5WCLYzFRcnjmIYjjnLfnecZwMur3yw,842
|
|
215
|
+
biotite/sequence/graphics/color_schemes/flower.json,sha256=S0xkRcSkM_awZxpIBQqhT4_vxnWjVKq5ZXF6VxWBY7o,842
|
|
216
|
+
biotite/sequence/graphics/color_schemes/jalview_buried.json,sha256=SyfbSC5TSbdNudMZa6IrT0053OLJapLObuF2ERMdJmc,777
|
|
217
|
+
biotite/sequence/graphics/color_schemes/ocean.json,sha256=oWGprmKUfhXuTuAkZezrDifhIdf3ko6LIF2yK9OqcbA,841
|
|
218
|
+
biotite/sequence/graphics/color_schemes/jalview_prop_turn.json,sha256=q3znbzT1Hs_JRr7Juud245Be7JIiiNlZm-7XoaRssIM,779
|
|
219
|
+
biotite/sequence/graphics/color_schemes/spring.json,sha256=7by_eGRbvdxueWB2RmSxi0mYTDpAhVglnX2jkrdw8FU,842
|
|
220
|
+
biotite/sequence/graphics/color_schemes/clustalx_protein.json,sha256=P-PeZPcdP58RYgESclfNIVF1S84LxGqGzhBNEYaRyVY,704
|
|
221
|
+
biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=q9GXPg8OaeE6SvWPvdKxBU1hHmHSNNVaiPTmmJu4pP0,702
|
|
222
|
+
biotite/sequence/graphics/color_schemes/jalview_prop_helix.json,sha256=mZrFbuArC56OOtdxZ0m3hQs35RTR0sCATgbaq5DfsYM,780
|
|
223
|
+
biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=xG5qNN6Zov99pgEkna2jws7Vdp5cfYhKaUaPkyq9Nzw,248
|
|
224
|
+
biotite/sequence/graphics/color_schemes/sunset.json,sha256=HnKftW6Mv52-fhqgIElQV0yW8cYMqtksPShG12zW7Is,842
|
|
225
|
+
biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=43xTI6C5J1YDdH3gnlUgfOTeZm9gCwhy6K-YC9pRgdc,663
|
|
226
|
+
biotite/sequence/graphics/color_schemes/blossom.json,sha256=NneinRHISSkgrdCDtaxNCCaF6-9Ya_9PlKKKR6LweXc,843
|
|
227
|
+
biotite/sequence/graphics/color_schemes/jalview_prop_strand.json,sha256=83GsLW_LOC4156kX4hVXUa4LUmoJm9FhOgyXrmXOR-E,781
|
|
228
|
+
biotite/sequence/graphics/color_schemes/autumn.json,sha256=usp-Y70tk39LCJV64vi7t3wd0pcf7kOjEE8dZhAbryM,842
|
|
229
|
+
biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=V0IJ-GsT8G8-J9CILWaiY3QkB35wYEq2kbWEDqYjm-4,701
|
|
230
|
+
biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=xkNRgGj_ersYNx8eSDAnI1HQalGiAWHw97tO_pmfyNE,249
|
|
231
|
+
biotite/sequence/phylo/nj.pyx,sha256=s6hoo_7s3VFy-7Hgq9lKtUVXTZ-To8Dxwytk-ohfWYI,7281
|
|
232
|
+
biotite/sequence/phylo/__init__.py,sha256=TW1CQqOa3JZYqidRy5XE8gA0HuzA8zo2Iouit3wSsBM,1261
|
|
233
|
+
biotite/sequence/phylo/nj.cpython-310-darwin.so,sha256=0vTQ8xCT6RDsyFopKCVCLcHo-85SocWBToMrgEP-O94,232344
|
|
234
|
+
biotite/sequence/phylo/upgma.pyx,sha256=86QxGjj8fcGRhze7vZfqw8JLjLAZUevhkWDmzTy357E,5213
|
|
235
|
+
biotite/sequence/phylo/tree.cpython-310-darwin.so,sha256=7xCKn-6NRujvhejMsMDn062yj_F_ZK0B1bSdnmcwrJ8,288152
|
|
236
|
+
biotite/sequence/phylo/tree.pyx,sha256=4e4Bhlm1qWY0Wvj6JqDE9jVwP6lEUmE8lIHEUmRNLwU,39206
|
|
237
|
+
biotite/sequence/phylo/upgma.cpython-310-darwin.so,sha256=9auBKcvNI5tOwZfouuPnP1wJEysUaqW9Jog8vTfQuJw,212424
|
|
238
|
+
biotite/structure/repair.py,sha256=-1orK6q9tRNy36GWuS8_r4_goaGiaVtJy0I1VPCao2Q,6996
|
|
239
|
+
biotite/structure/superimpose.py,sha256=MvPsab-ZRdeig_SoJH3XrrOY0VteTNCnLEKNSsar0_Y,25124
|
|
240
|
+
biotite/structure/chains.py,sha256=I_A8JslWdBxi8cagoSGCfHddvHJ2WBSSe_WfovCwHxM,8827
|
|
241
|
+
biotite/structure/box.py,sha256=6iGaGbxnsoIRt_mq727yLqU1txz7PRpA2H458Xk00Uk,18598
|
|
242
|
+
biotite/structure/celllist.cpython-310-darwin.so,sha256=3NVcVfD0B-J6Sqr_xs9H_X-vps1Wuy-eBU67B2Em2kc,315696
|
|
243
|
+
biotite/structure/error.py,sha256=NI8oZfhO7oYWlcEIi025QZFD3Wjvwn6SvOn_RanrFT0,783
|
|
244
|
+
biotite/structure/util.py,sha256=z-yxfc60EMJMPyEpTZ8cdl0LTb2zURrJm6xDYZUprF0,2200
|
|
245
|
+
biotite/structure/segments.py,sha256=_yotEX4cr9WbxHdezLmoak5M3306PZZmPAxcO-tqSHU,5546
|
|
246
|
+
biotite/structure/sequence.py,sha256=HLUaO32S_iDw2Ot1XEqQ7UtGDrxjCg30cCpzBqKpVPY,4246
|
|
247
|
+
biotite/structure/sasa.cpython-310-darwin.so,sha256=p0VdfYWaDJgrtEPVm-p79V5OYJaA2sGEo5cut_-90yo,272168
|
|
248
|
+
biotite/structure/sasa.pyx,sha256=fEUWuLtqjEmviPuL57lLuLdopndW-b7xtzvCr0vfQtk,12984
|
|
249
|
+
biotite/structure/__init__.py,sha256=r2CR-UtCLVqbAygpKCri0pXD1FCe2M9wZSOi1Szp700,5324
|
|
250
|
+
biotite/structure/mechanics.py,sha256=1qzDJZ1U1T_KsxwKioYjtMTy9cGYRirtxKD5AcsaJ3E,2588
|
|
251
|
+
biotite/structure/sse.py,sha256=MUdyNSaDvxGi_gaY9bQjUSVNm-W8B1oinJ-UFV7slwk,11406
|
|
252
|
+
biotite/structure/charges.cpython-310-darwin.so,sha256=HxosRo0DadzvmNBF7CxllHtEUgg90fyNRmf5mRJsa6I,276352
|
|
253
|
+
biotite/structure/charges.pyx,sha256=RpCz4sVOiwmZeVTcMAapiWJFVBPAK0gAAiNoNZuxZWA,18822
|
|
254
|
+
biotite/structure/density.py,sha256=BosyeB-0RGrANMpnq78A8cx_fYAOFnkcAJYxP8LKtZ0,4196
|
|
255
|
+
biotite/structure/rdf.py,sha256=Yf9PoWqSpNK3QsWqnCnOUBGL8WwKGOakgZ0pxj5UOiA,8104
|
|
256
|
+
biotite/structure/transform.py,sha256=uz0t7-uv3QxJEd7oe8tpcnQPt5YfoFT6CLoruxEmvpA,19649
|
|
257
|
+
biotite/structure/geometry.py,sha256=nYFJxpZvtujFK-9ERBRxAl1yQSikezGVz6ZAKjoa96U,25058
|
|
258
|
+
biotite/structure/molecules.py,sha256=gkOSUTkIf1csP_6vDuxBhfJjIJWx-9xf_dW6dO7vFPY,15504
|
|
259
|
+
biotite/structure/filter.py,sha256=CwxFJKBGuk8TtalAjQ5WoPTFhQhgEdQmQjjTpanGIm8,17959
|
|
260
|
+
biotite/structure/bonds.pyx,sha256=XYd9QtCtyqEZKGXkSQyt74oku9NVNufPmaC35BFLZX0,67996
|
|
261
|
+
biotite/structure/atoms.py,sha256=bqROmImfB3W3rBIbm0z8p0Aaz5EDueQmdJarxQX6xL8,46481
|
|
262
|
+
biotite/structure/bonds.cpython-310-darwin.so,sha256=gxwYE4o-x2WRV3Mb-jXw2XQnBueRdB40r9RCJiB4SzA,575144
|
|
263
|
+
biotite/structure/pseudoknots.py,sha256=hHxS4IOekR8ZqYFJvuXMexM1e1kaWmdqX18zfxAL4W0,22224
|
|
264
|
+
biotite/structure/basepairs.py,sha256=2qxTgl6Q1zMjvZLa331hfQzbeMwrFzvSJYAfSETnwWo,49759
|
|
265
|
+
biotite/structure/integrity.py,sha256=I2gcIgCoxWsC_adSsHYvbmvCz1aSeeXvIjt8uZWxYOM,6826
|
|
266
|
+
biotite/structure/compare.py,sha256=vJLd5RKgMYrHCZiNExMfS1ceF4z8bRj9gazFkrUhIKk,9437
|
|
267
|
+
biotite/structure/hbond.py,sha256=4y2FXeAXl7g2EDnwb1uDXFieGpZPQhnnkdATBechvW8,15218
|
|
268
|
+
biotite/structure/dotbracket.py,sha256=8S1DHu1-PRgeMHERztfOKggneVEcoUdwd0QNtcH3qI4,6834
|
|
269
|
+
biotite/structure/residues.py,sha256=nYkbDjGYK6pFNJ0mZ1Hyb2ocmIOWLLnLyGi1tuhXxXk,22454
|
|
270
|
+
biotite/structure/celllist.pyx,sha256=PCK5hx4QyuRrernfP_ty-w2ZRG5Qyn5dmibRwdVKXsE,34461
|
|
271
|
+
biotite/structure/io/trajfile.py,sha256=eEghJscuDlYrYWPfb_Y7W-L87KhErj1UilgOMuBtRWw,25096
|
|
272
|
+
biotite/structure/io/__init__.py,sha256=Lxmd8x6lpWz8nA0QhXmrgjvD_mOP0KyGmEzsVGzxXX4,998
|
|
273
|
+
biotite/structure/io/general.py,sha256=GknBtXTMUsxhEiBrnB1dxW5ndFDHXnXT39xAlNAEr_4,8448
|
|
274
|
+
biotite/structure/io/dcd/__init__.py,sha256=tYiiTSmqDrsSgg_sZaoQgx2D8N9OeqlooxH46-4-iaQ,388
|
|
275
|
+
biotite/structure/io/dcd/file.py,sha256=jaU81fvGl4WG0zXB1dBKTOtSvFF3fS0kxeNR-wwpXlY,2224
|
|
276
|
+
biotite/structure/io/trr/__init__.py,sha256=5WNHMGiHNNzYdoiybE6Cs0bYAcznS5D3ABu7gHDJ__A,359
|
|
277
|
+
biotite/structure/io/trr/file.py,sha256=2LjaLoKYfNgyQGSEfQ1TdZQqaPyrBh3irbJdmEKFTMI,1235
|
|
278
|
+
biotite/structure/io/pdbx/bcif.py,sha256=FD9F_K14wDLApgaHtJ8Ove6Gogpk_8MB4MbuvMJ0SlY,19820
|
|
279
|
+
biotite/structure/io/pdbx/convert.py,sha256=8MHZHIFZ-sjg2bMQpXV1bRIc9IYHekGO5kQENW6gsfI,59629
|
|
280
|
+
biotite/structure/io/pdbx/encoding.pyx,sha256=KMfSe853yRKRCKzBNOl-JWtep7_i7Z0rzFFu6Tct0vE,28725
|
|
281
|
+
biotite/structure/io/pdbx/__init__.py,sha256=t8TqRYZdoHW_Jt68ZfXCZ0jmchLOuQbtYWRYwCocnEc,693
|
|
282
|
+
biotite/structure/io/pdbx/encoding.cpython-310-darwin.so,sha256=MhMRoX4R6gO09iTHOL7dFell4dUUxtsGJo5orBlyAPw,1161904
|
|
283
|
+
biotite/structure/io/pdbx/cif.py,sha256=Y4cboAQX1K_IwCSS1L-2ZEgi4yMXguc_dKEbbGZYTtI,32925
|
|
284
|
+
biotite/structure/io/pdbx/component.py,sha256=1ILksDKeb2TdRy3hW1-mSpno_zZEqT0sdpGlq_eY4U0,8026
|
|
285
|
+
biotite/structure/io/xtc/__init__.py,sha256=ipZjsWBil-h2ujdlEobyI2jGy5xsfRVOPAyCsYAJ7G4,357
|
|
286
|
+
biotite/structure/io/xtc/file.py,sha256=PknO2-xzLgKTBW5Gig5Hv1HUZ4BIHRf2con2MLxEwNU,1235
|
|
287
|
+
biotite/structure/io/pdbqt/convert.py,sha256=xF4m-tZG_4ykhZsknqUivFXbb6VqLXVLwmhi1AbOmuw,4008
|
|
288
|
+
biotite/structure/io/pdbqt/__init__.py,sha256=a0_uIzhzCHdLBMdXhb5KEhbyRSURmqYXNwdjnJ6LAbY,441
|
|
289
|
+
biotite/structure/io/pdbqt/file.py,sha256=aHMr0Oyf0oJbJ61AnFQlpISLCkt8gA3K15OEcd7gssM,26633
|
|
290
|
+
biotite/structure/io/netcdf/__init__.py,sha256=SX8u2Eu99PXiP0kvHJ4mMCXTy68wV-ptcFdYn9DzEVk,350
|
|
291
|
+
biotite/structure/io/netcdf/file.py,sha256=m5POlwjX0y28FjrK3lCglX9JD9r6iVuHJlQgJNZNStI,2192
|
|
292
|
+
biotite/structure/io/gro/__init__.py,sha256=tEKrIlgahoBJXvrwtmZ1yVSOE8QW8GS6lk7MHwE2Cso,408
|
|
293
|
+
biotite/structure/io/gro/file.py,sha256=vXNpc2aQVEggW8KwmkbouawWxaeOEKamDtYqS4kMhSo,12732
|
|
294
|
+
biotite/structure/io/mol/header.py,sha256=AbYKcqGsnPiTf1nH-bbIg97A4RClPeJwFk4IleW5Duk,3425
|
|
295
|
+
biotite/structure/io/mol/convert.py,sha256=sj7V7pdBlGQAAaXl7fAVf8JZC4Fd-z0gjne_0fYjyH4,3789
|
|
296
|
+
biotite/structure/io/mol/__init__.py,sha256=WvcNPDdf9W1zPyJ0tjTvGNxA83ht18uRQA8BF4s7Wno,582
|
|
297
|
+
biotite/structure/io/mol/ctab.py,sha256=r6Ryx3ZBhlxm88PWVOWGwxrgPow95DLEAcIf8N2mkGU,13470
|
|
298
|
+
biotite/structure/io/mol/mol.py,sha256=Eterau_ZfXbIkFHpDTvWzM2Yxxmem2hZn1tOQkXNuqM,5461
|
|
299
|
+
biotite/structure/io/mol/sdf.py,sha256=6u2oSfY1BICf0TZ7qkOrMpfbbyYlf6QruoLBCipzKE8,32245
|
|
300
|
+
biotite/structure/io/pdb/convert.py,sha256=fzXkfm-SN9HswZ8srj0v15RRec9hq0BtB3gCgNIlk9s,10602
|
|
301
|
+
biotite/structure/io/pdb/__init__.py,sha256=5NbUMDRKIe7jJ2ByRHpMhJzY_vIasjSgO63Zxrpq8BM,733
|
|
302
|
+
biotite/structure/io/pdb/file.py,sha256=Ox_ufeO9B78c3ZS06Dpb0I-aYXftEhPN7T3oXnW_uW4,47896
|
|
303
|
+
biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so,sha256=Ii5jkOof_6hQqBRpANRSx8jee2dCeP9SiRX9WqFbCI0,209840
|
|
304
|
+
biotite/structure/io/pdb/hybrid36.pyx,sha256=BKV7oh0xrrjqVrkhTn7KEolon57fUhlG4Yf0Tf22wuU,8036
|
|
305
|
+
biotite/structure/info/misc.py,sha256=GIdFhRtzWInhynVXNQwQpJszowmZ_0Jdqh9R706CB_Y,3512
|
|
306
|
+
biotite/structure/info/atom_masses.json,sha256=WME4ezDPy-HrEIhxkOGxcmIMdgxf1x7e_xwBkFRdTsY,2383
|
|
307
|
+
biotite/structure/info/__init__.py,sha256=SMJ93QhJitkvDwTra_MjSsGEuU1V0-PoQ1Kwq7OuRvI,679
|
|
308
|
+
biotite/structure/info/groups.py,sha256=AVDuw4OAwxnUXx6xmCVg0IrXVX9ESKWE4rKtDNYICEY,1983
|
|
309
|
+
biotite/structure/info/radii.py,sha256=sNbJZz1AU9DBkImwRwwtWZEH_A3CFow5Hsx1D-U3_Bw,5610
|
|
310
|
+
biotite/structure/info/standardize.py,sha256=mF8N112nB5LLo6fZNOxlviZzccDD9ouFKefhR4NhSX0,7713
|
|
311
|
+
biotite/structure/info/bonds.py,sha256=Nv-OKSjBblrGfOsYVYbE6uDs18nIvXr8l-g-7YLmXtM,4501
|
|
312
|
+
biotite/structure/info/masses.py,sha256=kIMc-_NdEushTskuTszdd9FdrPUeqEO9EczOA9sAT7g,4483
|
|
313
|
+
biotite/structure/info/atoms.py,sha256=vBtjGVSLjnh69nFJYJ3s9Li_cnyBDTTijTiD77CLUbc,2622
|
|
314
|
+
biotite/structure/info/ccd.py,sha256=ZMaICtIrkUMLZ6Lvmo5riML1H9JETJqulk6ovJlafMk,3002
|
|
315
|
+
biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
|
|
316
|
+
biotite/structure/info/ccd/amino_acids.txt,sha256=RUyolncqbsplkY2hlajjOSciigyZEYL1GCx_f63jXx4,6669
|
|
317
|
+
biotite/structure/info/ccd/README.rst,sha256=sfFRGesjpATIp5S8kiEV7cr-Jb51fWLGT4KypmzsoPM,342
|
|
318
|
+
biotite/structure/info/ccd/carbohydrates.txt,sha256=bh5Vc84tETB-FKUm6H1brBN6zM5a2zzzwuWyb0MXaLA,4544
|
|
319
|
+
biotite/structure/info/ccd/nucleotides.txt,sha256=Q7Zjz45BAO6c2QDAgvYdKtWAqmjQxy2NQ6r-bsZRqv4,3136
|
|
320
|
+
biotite/structure/graphics/__init__.py,sha256=YwMT8-c2DjrkcwyK6jPeDtAKxQda0OhElnwk8J0y3Hc,353
|
|
321
|
+
biotite/structure/graphics/rna.py,sha256=w7zFMKo2ZZ4n60SkbkupEXPxe3-KUNa261PF784ry8k,12016
|
|
322
|
+
biotite/structure/graphics/atoms.py,sha256=988_URX4hfTE3oBOYgAvZruOrzogMPcFKiTT5RJL01E,8116
|
biotite/structure/io/ctab.py
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
# This source code is part of the Biotite package and is distributed
|
|
2
|
-
# under the 3-Clause BSD License. Please see 'LICENSE.rst' for further
|
|
3
|
-
# information.
|
|
4
|
-
|
|
5
|
-
__name__ = "biotite.structure.io"
|
|
6
|
-
__author__ = "Patrick Kunzmann"
|
|
7
|
-
__all__ = ["read_structure_from_ctab", "write_structure_to_ctab"]
|
|
8
|
-
|
|
9
|
-
import warnings
|
|
10
|
-
from ..bonds import BondType
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
def read_structure_from_ctab(ctab_lines):
|
|
14
|
-
"""
|
|
15
|
-
Parse a *MDL* connection table (Ctab) to obtain an
|
|
16
|
-
:class:`AtomArray`. :footcite:`Dalby1992`.
|
|
17
|
-
|
|
18
|
-
DEPRECATED: Moved to :mod:`biotite.structure.io.mol.ctab`.
|
|
19
|
-
|
|
20
|
-
Parameters
|
|
21
|
-
----------
|
|
22
|
-
ctab_lines : lines of str
|
|
23
|
-
The lines containing the *ctab*.
|
|
24
|
-
Must begin with the *counts* line and end with the `M END` line
|
|
25
|
-
|
|
26
|
-
Returns
|
|
27
|
-
-------
|
|
28
|
-
atoms : AtomArray
|
|
29
|
-
This :class:`AtomArray` contains the optional ``charge``
|
|
30
|
-
annotation and has an associated :class:`BondList`.
|
|
31
|
-
|
|
32
|
-
References
|
|
33
|
-
----------
|
|
34
|
-
|
|
35
|
-
.. footbibliography::
|
|
36
|
-
"""
|
|
37
|
-
warnings.warn("Moved to biotite.structure.io.mol.ctab", DeprecationWarning)
|
|
38
|
-
from biotite.structure.io.mol.ctab import read_structure_from_ctab
|
|
39
|
-
return read_structure_from_ctab(ctab_lines)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
def write_structure_to_ctab(atoms, default_bond_type=BondType.ANY):
|
|
43
|
-
"""
|
|
44
|
-
Convert an :class:`AtomArray` into a
|
|
45
|
-
*MDL* connection table (Ctab). :footcite:`Dalby1992`
|
|
46
|
-
|
|
47
|
-
DEPRECATED: Moved to :mod:`biotite.structure.io.mol.ctab`.
|
|
48
|
-
|
|
49
|
-
Parameters
|
|
50
|
-
----------
|
|
51
|
-
atoms : AtomArray
|
|
52
|
-
The array must have an associated :class:`BondList`.
|
|
53
|
-
|
|
54
|
-
Returns
|
|
55
|
-
-------
|
|
56
|
-
ctab_lines : lines of str
|
|
57
|
-
The lines containing the *ctab*.
|
|
58
|
-
The lines begin with the *counts* line and end with the `M END`
|
|
59
|
-
.line
|
|
60
|
-
default_bond_type : BondType
|
|
61
|
-
Bond type fallback in the *Bond block* if a bond has no bond_type
|
|
62
|
-
defined in *atoms* array. By default, each bond is treated as
|
|
63
|
-
:attr:`BondType.ANY`.
|
|
64
|
-
|
|
65
|
-
References
|
|
66
|
-
----------
|
|
67
|
-
|
|
68
|
-
.. footbibliography::
|
|
69
|
-
"""
|
|
70
|
-
warnings.warn("Moved to biotite.structure.io.mol.ctab", DeprecationWarning)
|
|
71
|
-
from biotite.structure.io.mol.ctab import write_structure_to_ctab
|
|
72
|
-
return write_structure_to_ctab(atoms, default_bond_type)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# This source code is part of the Biotite package and is distributed
|
|
2
|
-
# under the 3-Clause BSD License. Please see 'LICENSE.rst' for further
|
|
3
|
-
# information.
|
|
4
|
-
|
|
5
|
-
"""
|
|
6
|
-
This subpackage is used for reading and writing an :class:`AtomArray` or
|
|
7
|
-
:class:`AtomArrayStack` using the binary MMTF format. This format
|
|
8
|
-
features a smaller file size and a highly increased I/O operation
|
|
9
|
-
performance, than the text based file formats.
|
|
10
|
-
|
|
11
|
-
DEPRECATED: Use :class:`biotite.structure.io.pdbx.BinaryCIFFile`
|
|
12
|
-
instead.
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
__name__ = "biotite.structure.io.mmtf"
|
|
16
|
-
__author__ = "Patrick Kunzmann"
|
|
17
|
-
|
|
18
|
-
from .assembly import *
|
|
19
|
-
from .file import *
|
|
20
|
-
from .convertfile import *
|
|
21
|
-
from .convertarray import *
|