biotite 0.39.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1437 -1279
- biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cp311-win_amd64.pyd +0 -0
- biotite/structure/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +219 -198
- biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +89 -34
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: biotite
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.41.0
|
|
4
4
|
Summary: A comprehensive library for computational molecular biology
|
|
5
5
|
Author: The Biotite contributors
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -48,11 +48,11 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
48
48
|
Classifier: Programming Language :: Python :: 3
|
|
49
49
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
50
50
|
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
51
|
-
Requires-Python: >=3.
|
|
51
|
+
Requires-Python: >=3.10
|
|
52
52
|
Description-Content-Type: text/x-rst
|
|
53
53
|
License-File: LICENSE.rst
|
|
54
54
|
Requires-Dist: requests >=2.12
|
|
55
|
-
Requires-Dist: numpy
|
|
55
|
+
Requires-Dist: numpy <=2.0,>=1.14.5
|
|
56
56
|
Requires-Dist: msgpack >=0.5.6
|
|
57
57
|
Requires-Dist: networkx >=2.0
|
|
58
58
|
Provides-Extra: test
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
biotite/__init__.py,sha256=
|
|
1
|
+
biotite/__init__.py,sha256=Ik4G4g6cxAnWqDNPfy8RfXVnO39z1jyD5QxOXwNKXng,541
|
|
2
2
|
biotite/copyable.py,sha256=bS6JvqiG2G-8Kav7hzJb2mhO0mSpgjFvm_LD_t9dTLA,2042
|
|
3
|
-
biotite/file.py,sha256=
|
|
3
|
+
biotite/file.py,sha256=Hu4NPQOgTtgt10fgRSOaD92Ur2rBMUUBW-fOniFUsJw,7680
|
|
4
4
|
biotite/temp.py,sha256=zROAfIdwaqso8_cvpVkCM37LNtzpke-XIoidHZkDnuY,2130
|
|
5
5
|
biotite/visualize.py,sha256=yuQJEwZhfbXPR8tWKUywusP1puFlLc_DAbctY_nCrhM,10092
|
|
6
6
|
biotite/application/__init__.py,sha256=k1y1IgbK_vZJdHbQt4cgNgR1auc-riGcjrb5rkhyQuQ,1778
|
|
@@ -17,7 +17,7 @@ biotite/application/blast/webapp.py,sha256=J_uRQMFMdCOyGP-kEaXRNLgDHopUU68Wcuru5
|
|
|
17
17
|
biotite/application/clustalo/__init__.py,sha256=11hGCckaAM6MOv9krf585L5-7JAgRMJv2bxv3UlrgAQ,336
|
|
18
18
|
biotite/application/clustalo/app.py,sha256=hUA_bFHf_5M-Ath6brNC4-BzI0fdWS04AhDE_pV7M_U,8068
|
|
19
19
|
biotite/application/dssp/__init__.py,sha256=ILnVuoQhzPQRXDyDVVu2_I4xCejdRtQY8PbsM1UExos,333
|
|
20
|
-
biotite/application/dssp/app.py,sha256=
|
|
20
|
+
biotite/application/dssp/app.py,sha256=g2z5u8bty5NxVNufaYavBECg65UlqWpSn98BShblxFg,4980
|
|
21
21
|
biotite/application/mafft/__init__.py,sha256=AtmjXcE6WsWc8JxbcmUtIHDqPBh8cH1XTZrxWlEihx8,325
|
|
22
22
|
biotite/application/mafft/app.py,sha256=YUuKdY7ELYQUfzO6CZ6TkqDKP3WDx_nyggVaBbkKASQ,3622
|
|
23
23
|
biotite/application/muscle/__init__.py,sha256=22UWh76stefAwlwMayawfD9kJTjlsXdUfgrsnVze8Bw,349
|
|
@@ -41,12 +41,12 @@ biotite/database/entrez/download.py,sha256=Ieqx9Rx_A36RZiEMzuY1pw8CXEnofHguLQ9qR
|
|
|
41
41
|
biotite/database/entrez/key.py,sha256=XSaqJT7IhbGI1UUZNmgbu0elKJ9KWRvxHhOS6aw8QhI,1154
|
|
42
42
|
biotite/database/entrez/query.py,sha256=n55TM0yhJVhywTA60o159_GDrnff3kfxXrS5MbrE76o,7245
|
|
43
43
|
biotite/database/pubchem/__init__.py,sha256=pTsYwm9pQYHTVFmkVJC0qZkN0cxl21ZwT5KqIR_qpuQ,688
|
|
44
|
-
biotite/database/pubchem/download.py,sha256=
|
|
44
|
+
biotite/database/pubchem/download.py,sha256=Y15plkcYOJCJOY7-kxGd_xoFs7xEscDLzj-INkFggxM,10257
|
|
45
45
|
biotite/database/pubchem/error.py,sha256=rC91vT5WHPwdanldwLMJWUrYkdFDCZkjCiEHy_WpDZc,730
|
|
46
|
-
biotite/database/pubchem/query.py,sha256=
|
|
46
|
+
biotite/database/pubchem/query.py,sha256=1yvLR_wYtT-1ywij7wW8JIM7ohj2qO8ux7flu4PLOVY,27252
|
|
47
47
|
biotite/database/pubchem/throttle.py,sha256=GK-x6_zV7gJ3gUyxEUSbO8YbT5J6Oj3XIB5zs5ZoU1c,3643
|
|
48
48
|
biotite/database/rcsb/__init__.py,sha256=qb0x-Z4npqOyGi5nY5A-66xXb7woPSy1M2d_jVadRj4,343
|
|
49
|
-
biotite/database/rcsb/download.py,sha256=
|
|
49
|
+
biotite/database/rcsb/download.py,sha256=ZlbYbAvCsri4NnpDvaLeCSTJUSlz6etQOExd_301rN0,6163
|
|
50
50
|
biotite/database/rcsb/query.py,sha256=CzV9YOujbyjmIv-2OuLVJN3iHC4WiOAaNcZfnPC7muc,34023
|
|
51
51
|
biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
|
|
52
52
|
biotite/database/uniprot/check.py,sha256=wmxqqAV9NkEHlC4st4uP9yqhrjJ26uFQfuJM1ItFqIk,1278
|
|
@@ -54,9 +54,9 @@ biotite/database/uniprot/download.py,sha256=MGxeS3DwSIn8WUur1-hOFEKgr4tgKZLmDdTc
|
|
|
54
54
|
biotite/database/uniprot/query.py,sha256=283jqn5qr_Lfsi5oUQ-LkK5Cutauy8kDih26rZdkEzg,7099
|
|
55
55
|
biotite/sequence/__init__.py,sha256=K2I_Ds-pEmY25pEbzrIKCUMt9De2pPOG-hoMfsxn8nQ,3106
|
|
56
56
|
biotite/sequence/alphabet.py,sha256=-f1p9hVGEgFbjawce2J3Ybug5VY2hkZiN3gPujeYStU,18350
|
|
57
|
-
biotite/sequence/annotation.py,sha256=
|
|
58
|
-
biotite/sequence/codec.c,sha256=
|
|
59
|
-
biotite/sequence/codec.cp311-win_amd64.pyd,sha256=
|
|
57
|
+
biotite/sequence/annotation.py,sha256=U1-vAsQvF02eazhEE0qqujBSkTv1_jiPrjSkoU8LY88,30575
|
|
58
|
+
biotite/sequence/codec.c,sha256=o_y6golfueaPVBw-EgqI-Me6xE5bbMRK3l9VHjsxz3s,1529118
|
|
59
|
+
biotite/sequence/codec.cp311-win_amd64.pyd,sha256=PoP_xss--jCNu2wRnmtWtJIgDINvZcxgTx8auBLuTxw,240640
|
|
60
60
|
biotite/sequence/codon.py,sha256=g3CfUkCbzm0kwDf0jsQdOk0RBKU9B4HvJEq5bCqTvRc,16921
|
|
61
61
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
62
62
|
biotite/sequence/profile.py,sha256=a455N4r1ua9e5tDZIp8u014ELxZE-Sxw_IUeCuqjgrQ,17269
|
|
@@ -65,33 +65,33 @@ biotite/sequence/seqtypes.py,sha256=NjBXwpTer2PhcEwngpWBYwYwR6yj3N_7JTILIoG3UNM,
|
|
|
65
65
|
biotite/sequence/sequence.py,sha256=aRA8oHwWt8xyC8mHD0vPNpbYJiihyanD1hkUl9-qrfo,12285
|
|
66
66
|
biotite/sequence/align/__init__.py,sha256=0nXg-din6JaXqPAZsv9yf0F7YICjNsXTc4erZotaF10,1752
|
|
67
67
|
biotite/sequence/align/alignment.py,sha256=IiD_v_N10M3xRn2Xn5BdPT3E7dRIS7Qsne0WQUWWRks,21995
|
|
68
|
-
biotite/sequence/align/banded.c,sha256=
|
|
69
|
-
biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256
|
|
68
|
+
biotite/sequence/align/banded.c,sha256=LrnKkLCCjjbpkm8MFi_0SMNN49DFWTxgmu8kEvVaqXE,2578665
|
|
69
|
+
biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=DGX3mLkTsGOua-awdUJ80GrgUPVTkW2Dlhrx9FOHbRk,491520
|
|
70
70
|
biotite/sequence/align/buckets.py,sha256=smW_ioFzL_tkc1ybfzbmLVujgEBFeESCZSXc4Fx9KIs,2490
|
|
71
|
-
biotite/sequence/align/cigar.py,sha256=
|
|
72
|
-
biotite/sequence/align/kmeralphabet.c,sha256=
|
|
73
|
-
biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=
|
|
74
|
-
biotite/sequence/align/kmersimilarity.c,sha256=
|
|
75
|
-
biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=
|
|
76
|
-
biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=
|
|
77
|
-
biotite/sequence/align/kmertable.cpp,sha256=
|
|
78
|
-
biotite/sequence/align/localgapped.c,sha256=
|
|
79
|
-
biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=
|
|
80
|
-
biotite/sequence/align/localungapped.c,sha256=
|
|
81
|
-
biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256
|
|
71
|
+
biotite/sequence/align/cigar.py,sha256=HNVubK3eESGrlYX40Ks80KHVIniKxhLofsts5PVcgJg,15080
|
|
72
|
+
biotite/sequence/align/kmeralphabet.c,sha256=SXccFDrOKECVDKDQHwqsyFHglnUslVGtUUal6Z3bF_8,1912880
|
|
73
|
+
biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=C-bMRcTbgD9po1gDWy9zbblhAi_3joDAxO9z36j1W-w,306688
|
|
74
|
+
biotite/sequence/align/kmersimilarity.c,sha256=Vv7mqaF0SkM8uImaBZj2pAIVJv6gnkbKlig4-6UltBM,1252717
|
|
75
|
+
biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=d-0xgj8dp4o_V5LcSMA0tv2GEpbZD8imjIScxGnxBMk,172544
|
|
76
|
+
biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=X7nBUGEQra66zihzreTSnGpEebx1_OgpN9l9aDvxVzg,598016
|
|
77
|
+
biotite/sequence/align/kmertable.cpp,sha256=DBQ3dWbWeEhiO8AOpxZKl7OAwRc2RW-z--Np4x0zaR0,3030299
|
|
78
|
+
biotite/sequence/align/localgapped.c,sha256=mFtM_IpiMsua0Y1OnU-vaX8tbhhuUQqWttT70wsUxw0,4599727
|
|
79
|
+
biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=rDB03sNeiMotr3VFYtVQl7vc8Mjy6-_CRb2s1u2a1N8,990720
|
|
80
|
+
biotite/sequence/align/localungapped.c,sha256=1S5RDMUolkotIMbm-8AppaX_uSHtO3VNbwFEtQb2v8s,1605971
|
|
81
|
+
biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=HSxkF3bJsYSfk8aKsAMImS1agEv_cQpNOhU9IBorVD4,254976
|
|
82
82
|
biotite/sequence/align/matrix.py,sha256=LAh-OYS5Lsp_P9M-Zk31785Dz2LVb8C6mJr5P6mBY9o,13692
|
|
83
|
-
biotite/sequence/align/multiple.c,sha256=
|
|
84
|
-
biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=
|
|
85
|
-
biotite/sequence/align/pairwise.c,sha256=
|
|
86
|
-
biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=
|
|
87
|
-
biotite/sequence/align/permutation.c,sha256=
|
|
88
|
-
biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=
|
|
83
|
+
biotite/sequence/align/multiple.c,sha256=d9QSZ7ZPbO-RXEUaekfnaPHARf4-Q-0dS-F4d25QB3c,2275188
|
|
84
|
+
biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=STRrJGBqbRphZmRWikHgrSEFJGnY5VDb1N6P-2E3GLQ,404992
|
|
85
|
+
biotite/sequence/align/pairwise.c,sha256=Avbq78bmgDXTR6TfCmEa7Iee-qNJ_RSM3UbJCoYEvsY,2882781
|
|
86
|
+
biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=c6MCMj3uDkFVd5_bofTJ0x02BE2JnSyYOWFV6wmB_ZQ,535552
|
|
87
|
+
biotite/sequence/align/permutation.c,sha256=b0CrYFlGN89FgxgoMntd45PDKKp5xqjkSa5TCsxLQ-c,1278890
|
|
88
|
+
biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=6yMQnz5HWN5WPhQMbwEh1RMZO6DYJej3umCkAj_fczk,180736
|
|
89
89
|
biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
|
|
90
|
-
biotite/sequence/align/selector.c,sha256=
|
|
91
|
-
biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=
|
|
90
|
+
biotite/sequence/align/selector.c,sha256=HrvxJcKDmzwyg1-AsVLns70RXT0dQ9k-gyLcQkgvH2g,1632745
|
|
91
|
+
biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=DA6hgTu9Px7U1lC41DRxDO2nKB1w6oouIvdXqSOe-eY,253440
|
|
92
92
|
biotite/sequence/align/statistics.py,sha256=m8O15sp8ENnyM_PcJEmiTy0lJ9O9h9-Cw3FEIzQXpVY,9996
|
|
93
|
-
biotite/sequence/align/tracetable.c,sha256=
|
|
94
|
-
biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=
|
|
93
|
+
biotite/sequence/align/tracetable.c,sha256=OlskyFIVbMmUV0J8WeZNdT27tB9swl3ye8TwmOqw5X8,1219044
|
|
94
|
+
biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=q8AuS3xgHLzg6VR3zYlpZ4nnZDpBEntdorqRclSKhIA,146944
|
|
95
95
|
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
|
|
96
96
|
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
|
|
97
97
|
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
|
|
@@ -210,7 +210,7 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
|
|
|
210
210
|
biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
|
|
211
211
|
biotite/sequence/io/general.py,sha256=OO-hwLh9Htg7zXGQLQQDCgf3mPdQrgJwBKp9ZryN7tA,6762
|
|
212
212
|
biotite/sequence/io/fasta/__init__.py,sha256=D3tP3axh_WL7dlDEve8lsjTi_KFnJnbXIv8Uh8OurfU,740
|
|
213
|
-
biotite/sequence/io/fasta/convert.py,sha256=
|
|
213
|
+
biotite/sequence/io/fasta/convert.py,sha256=qDdCD_mC0RPe6-LIaioA_Px7Go64GYc3h1pWlu6RsoE,9706
|
|
214
214
|
biotite/sequence/io/fasta/file.py,sha256=_N_XR60SA-MuK41p46VKtXXFY6oJ-QdRNmCb74otaW0,9714
|
|
215
215
|
biotite/sequence/io/fastq/__init__.py,sha256=9gwrwPLZ-2-3AU-PIBKxJfs9DmB4I9mCMupeL8rIkec,605
|
|
216
216
|
biotite/sequence/io/fastq/convert.py,sha256=HekmBDfG45Wp_eX5G61dE-9iwqYV-ox1qhT9CdgW-XM,3886
|
|
@@ -224,110 +224,116 @@ biotite/sequence/io/gff/__init__.py,sha256=8VlLeqLj707W2Df_2heO8GLRFr1w6VZZdZYC0
|
|
|
224
224
|
biotite/sequence/io/gff/convert.py,sha256=2pQ15ZndbMd2zdlHu9wkbXJek8prcWWxWVNVtDvpVxc,4831
|
|
225
225
|
biotite/sequence/io/gff/file.py,sha256=Vs6J_tFVsouke9Vfw4Gr84pVEnY2fZwAczzG9DXOWlg,16501
|
|
226
226
|
biotite/sequence/phylo/__init__.py,sha256=aQFrdnlkwdrI-7JaU74puj3Jd9n8YOb8xBr_MWgRJqg,1295
|
|
227
|
-
biotite/sequence/phylo/nj.c,sha256=
|
|
228
|
-
biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=
|
|
229
|
-
biotite/sequence/phylo/tree.c,sha256=
|
|
230
|
-
biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=
|
|
231
|
-
biotite/sequence/phylo/upgma.c,sha256=
|
|
232
|
-
biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=
|
|
233
|
-
biotite/structure/__init__.py,sha256=
|
|
227
|
+
biotite/sequence/phylo/nj.c,sha256=59vncJLpNdu5njGyebFd65-S_YmxE5v-kAIfXubJpbM,1221174
|
|
228
|
+
biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=TSlAMS2bs5AZcur3gPiC3n_tnC8j2B9DI_E3MNQxvds,167936
|
|
229
|
+
biotite/sequence/phylo/tree.c,sha256=flOdn4R5j3rU5uaIvb4yFd0pJOZrX48_v88MwkDwPJM,1216278
|
|
230
|
+
biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=0-eYPT8w8Hdusn7vA3o2PlZ_JfSicNy5R4g2HF3nvC8,207360
|
|
231
|
+
biotite/sequence/phylo/upgma.c,sha256=hnLyjVuHx2G8nDEaNYubM0r7qy9sWOsJo51o_Cdqdh8,1168702
|
|
232
|
+
biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=UlOiSzJd92rzhU7N4sTqXEG1jLVuZNhNjhlh99ptSQ4,160768
|
|
233
|
+
biotite/structure/__init__.py,sha256=eKkz3PMZDOHo1Nq-kTXNjX-KuEDiRj9glRWC_qzj_Zw,5455
|
|
234
234
|
biotite/structure/atoms.py,sha256=7sE_YceqnjoC0fxiIaOc9woujWdvIjb6Dfi2L8hG71I,49471
|
|
235
|
-
biotite/structure/basepairs.py,sha256=
|
|
236
|
-
biotite/structure/bonds.c,sha256=
|
|
237
|
-
biotite/structure/bonds.cp311-win_amd64.pyd,sha256=
|
|
235
|
+
biotite/structure/basepairs.py,sha256=s6h7uSKmuiT6yRyVB1bBuH_xjoRnOSHaRuTgdC0BUbA,51563
|
|
236
|
+
biotite/structure/bonds.c,sha256=bcRGjV1IXN7Tl59YzJ0M5xdIquRnVpJbCKuS5EZhnHA,2552053
|
|
237
|
+
biotite/structure/bonds.cp311-win_amd64.pyd,sha256=neTRIq1KKlFMfxySLvYn2YbXfWBx7JV8b-Bzbd5S7Cw,476160
|
|
238
238
|
biotite/structure/box.py,sha256=5mt25oCUd_GG4j_TBRaT6w__IQGjg-sFYiw4h-Iw7nA,19333
|
|
239
|
-
biotite/structure/celllist.c,sha256=
|
|
240
|
-
biotite/structure/celllist.cp311-win_amd64.pyd,sha256=
|
|
239
|
+
biotite/structure/celllist.c,sha256=aKVo4JN97Jj-P7hhk-SrL2AOLkKACYsPQJ6kSDlFc0w,1569623
|
|
240
|
+
biotite/structure/celllist.cp311-win_amd64.pyd,sha256=Fh4y9pbwBVDQkKVdETPb--E7Fi1R1U77byS5XRlR5Eg,251904
|
|
241
241
|
biotite/structure/chains.py,sha256=fiAmT6J8BlfmdAtajOd_QVU0qriCwE7QPe4KsVxbXo8,9104
|
|
242
|
-
biotite/structure/charges.c,sha256=
|
|
243
|
-
biotite/structure/charges.cp311-win_amd64.pyd,sha256=
|
|
242
|
+
biotite/structure/charges.c,sha256=WEKNLFIDlQeTEYNhhc8f3pYi6ymc8WYgREit5K4AD0Q,1410335
|
|
243
|
+
biotite/structure/charges.cp311-win_amd64.pyd,sha256=b2J85Bryo--IZ7LR9-CMMlM-0DKIVV-CTfomEjhP8Ro,214528
|
|
244
244
|
biotite/structure/compare.py,sha256=4OoYgAUNkMdC91-4lNMkdyV3xtp-QtIGxrzIwUVIUuA,9775
|
|
245
245
|
biotite/structure/density.py,sha256=zhpce1XIsD0Q4D6Sxu1vbelhTyD1o7p1cxFD2Z0xf3s,4348
|
|
246
|
-
biotite/structure/dotbracket.py,sha256=
|
|
246
|
+
biotite/structure/dotbracket.py,sha256=oClMstfkjfkLo_mYghwiGOvOc1cqugPZMfEFUWX9A6c,7101
|
|
247
247
|
biotite/structure/error.py,sha256=nr7GT-wS7_lHE9Ls4PGp_6rUYwlHNYo31L7zEkPYj2k,805
|
|
248
|
-
biotite/structure/filter.py,sha256=
|
|
248
|
+
biotite/structure/filter.py,sha256=fy_G_XPvp98xKumeAb_GvRGUcTS9iYXINu7IMFMqBtw,19301
|
|
249
249
|
biotite/structure/geometry.py,sha256=u4nizcSsSSTAVV2NJ6zt_VcGYcvRsp_OGp87JAP-dek,25953
|
|
250
250
|
biotite/structure/hbond.py,sha256=K3YM_-ixIxULSrCNLBfXvsda163uh7ToHFOB70If7eg,15571
|
|
251
|
-
biotite/structure/integrity.py,sha256=
|
|
251
|
+
biotite/structure/integrity.py,sha256=BjNgMY8XBpJCEZU0jM9865HVcgIJQk_HxHvf9MKRT5Q,8877
|
|
252
252
|
biotite/structure/mechanics.py,sha256=LdwNnVXvDEwxqHT0U7uZ6QHU0PijDgGeN7EYY-ZXo8U,2776
|
|
253
|
-
biotite/structure/molecules.py,sha256=
|
|
253
|
+
biotite/structure/molecules.py,sha256=hLcPcRLGsXTgX-EZEG87KBuZ5r90eEzwS0yDFnRHbjc,15831
|
|
254
254
|
biotite/structure/pseudoknots.py,sha256=xYVjdVHbSt_8-ivTXlv0d1ZvECAMpzt01n8VELA-xCg,23022
|
|
255
255
|
biotite/structure/rdf.py,sha256=lVmDv56xmpaZdmyBNtnN4TxtyNGMKq9yKxdBmlb71Sk,8302
|
|
256
|
+
biotite/structure/repair.py,sha256=kFI6NZ4HheXofPWN6_6GJPq-zo82GVruvhDK3SiH9Q0,7988
|
|
256
257
|
biotite/structure/residues.py,sha256=TQlKuP9ZQ2ifevoFDWp5wKQju69Zu5oCPicW0oq-dnw,22932
|
|
257
258
|
biotite/structure/resutil.py,sha256=9qz2bD0Grdm5LXiwDw7ElwGzPAfKJ_tnpcgyby9HozU,5780
|
|
258
|
-
biotite/structure/sasa.c,sha256=
|
|
259
|
-
biotite/structure/sasa.cp311-win_amd64.pyd,sha256=
|
|
259
|
+
biotite/structure/sasa.c,sha256=sIuzZG6GFaNZqY80JNtS70kQ4isEWkWWawcefkWKznA,1322355
|
|
260
|
+
biotite/structure/sasa.cp311-win_amd64.pyd,sha256=Lvuw67YIAsDuJu2IAUxefgujg37U3iIuItSs51kZkoE,187904
|
|
261
|
+
biotite/structure/sequence.py,sha256=JLrxZ4Gl1GND-Z-tP2lxRRUYfzPAw0onHqTXsmf6KyM,4263
|
|
260
262
|
biotite/structure/sse.py,sha256=u0i-m0-FTlk0Oi74rj84g1dYNmgvVhW3uTuDHr9ubnI,12289
|
|
261
|
-
biotite/structure/superimpose.py,sha256=
|
|
263
|
+
biotite/structure/superimpose.py,sha256=xskOEf8aJvfRDIQ-QF_BbDb0_Y5j6We9Q0_0TuRE-3k,26879
|
|
262
264
|
biotite/structure/transform.py,sha256=DP_qp4uFgiNpL7OjojTl70rCXm1jHm8gs9ao51xnzU4,20270
|
|
263
265
|
biotite/structure/util.py,sha256=T1yhapfWJIMMsrkjOxBMu8aJTxNkJeZ7ttHo_XJBtTg,2356
|
|
264
266
|
biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
|
|
265
267
|
biotite/structure/graphics/atoms.py,sha256=kgLdRfwOxsZCJ4PQCxiJC6cV-wSJ6qUSwvW4soTOhEo,8396
|
|
266
268
|
biotite/structure/graphics/rna.py,sha256=-2mqW6n8tD3VEGiAhjXDMWNed0kLOO5-2EGdwwrmVKE,12169
|
|
267
|
-
biotite/structure/info/__init__.py,sha256=
|
|
268
|
-
biotite/structure/info/amino_acids.json,sha256=CsYGRuUSbVMhAnox2fm9IW_wpeAN2yhUzHy3qKk3Bxk,13988
|
|
269
|
-
biotite/structure/info/amino_acids.py,sha256=_JtRhCj5sEsCPeNDhTfBVZU2sifoGTxjY0ZV5C-MecA,1488
|
|
269
|
+
biotite/structure/info/__init__.py,sha256=zIRFQGmBG-XWfuID8Xr2vp6o70DdbdH1x8QXMn78MUY,727
|
|
270
270
|
biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
|
|
271
|
-
biotite/structure/info/atoms.py,sha256
|
|
272
|
-
biotite/structure/info/bonds.py,sha256=
|
|
273
|
-
biotite/structure/info/
|
|
274
|
-
biotite/structure/info/
|
|
275
|
-
biotite/structure/info/
|
|
276
|
-
biotite/structure/info/
|
|
277
|
-
biotite/structure/info/masses.py,sha256=IRjIZq5ZuKLVhYY03unnddBVJNx5-dV0jIoU_V9lFIM,4667
|
|
278
|
-
biotite/structure/info/misc.py,sha256=EL7O3X8oO2Feyf2KC2QAlygJ7CC00tJJJMputgmr2Is,2263
|
|
279
|
-
biotite/structure/info/nucleotides.json,sha256=tti1czJAZAAAeKISHWNKwhg42kAZhf9vzWjLdf8BpNg,6875
|
|
280
|
-
biotite/structure/info/nucleotides.py,sha256=m4Ak-CEvgQLot7A7TMDlw8phwnheHhvZUWmMuzw5CpU,1313
|
|
271
|
+
biotite/structure/info/atoms.py,sha256=ScWweOXKeLhbOPtxVSYTT4ySfQG6ESAWd-7sOTpLQb0,2650
|
|
272
|
+
biotite/structure/info/bonds.py,sha256=c-DyaOIkcB-DMpeNEBb1uksnjbURs9Du4y-EDwA227Y,4796
|
|
273
|
+
biotite/structure/info/ccd.py,sha256=FF0pWqKIto3PY7WPbLMHFFi7XgXCyi0GE7LVx-OZz1A,2848
|
|
274
|
+
biotite/structure/info/groups.py,sha256=yqKbbEJNRxaN41KVfUBvulPO2yu8nE35Qq08SUGvYko,2132
|
|
275
|
+
biotite/structure/info/masses.py,sha256=C_eb9HxNP43bVarwW4MgeUSUln-sYSdjyIK2qa8E3u4,4611
|
|
276
|
+
biotite/structure/info/misc.py,sha256=rdYyT2gkRDg7OeB8RAvvB2YYpoHUUmTa-8unqGvCPog,3634
|
|
281
277
|
biotite/structure/info/radii.py,sha256=bVCi_3TMz54uJTupgcxpPuqSYzLuT76da3V63v8dLRc,5844
|
|
282
|
-
biotite/structure/info/
|
|
283
|
-
biotite/structure/info/
|
|
284
|
-
biotite/structure/info/
|
|
285
|
-
biotite/structure/info/
|
|
286
|
-
biotite/structure/
|
|
287
|
-
biotite/structure/
|
|
288
|
-
biotite/structure/io/
|
|
278
|
+
biotite/structure/info/standardize.py,sha256=nghv0HozXDVx4lMCcCEUue460kM2EH5_KWgVEt0atBI,7967
|
|
279
|
+
biotite/structure/info/ccd/README.rst,sha256=GeRC_rNZkw9mmGBjSwiy6pgyzzYZEPh0IX5pMIjCruQ,349
|
|
280
|
+
biotite/structure/info/ccd/amino_acids.txt,sha256=l1yE8BcddZ8aJtMhDr0wfn_zRHy-am39xuMm80DIsuA,8332
|
|
281
|
+
biotite/structure/info/ccd/carbohydrates.txt,sha256=R6WD5xRqmmiYAQp6QrdtlSBF6IBVC4BeMPPl5keEMeA,5679
|
|
282
|
+
biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
|
|
283
|
+
biotite/structure/info/ccd/nucleotides.txt,sha256=rVTN65IGs1rfwDzjdhiaIZQ3mCGg3WvllNPSUWCBsoY,3934
|
|
284
|
+
biotite/structure/io/__init__.py,sha256=CoLuj2rSeFcwWRkljmG0CLJmBpKAdTHukfch3E4Ws2c,1063
|
|
285
|
+
biotite/structure/io/ctab.py,sha256=crhK0a-E0aa9xPEERdMhLu3CXeBi092OXFuUUmm5HXw,2255
|
|
286
|
+
biotite/structure/io/general.py,sha256=1ZkkKcmzZdghIfbe2ogo5DvgeTeo9gkAreHoLcgfXwU,9322
|
|
289
287
|
biotite/structure/io/trajfile.py,sha256=570HTBR-XEcWX5FpriC8ZzZR6JZCu8vRqm0nF6NZ1OQ,26403
|
|
290
288
|
biotite/structure/io/dcd/__init__.py,sha256=KeW_mvWoyTypFEdhaRTU75U8OLXzH7RqIgw_DLCbjMw,399
|
|
291
289
|
biotite/structure/io/dcd/file.py,sha256=G6uULpUtR8XtqrmWf348mU_svIqVn52LzaRFJks_qVM,2234
|
|
292
290
|
biotite/structure/io/gro/__init__.py,sha256=5UHVgXmEtWHzeQSNUMlHVjstIGN4CxGvIkzibqmM-oQ,420
|
|
293
|
-
biotite/structure/io/gro/file.py,sha256=
|
|
294
|
-
biotite/structure/io/mmtf/__init__.py,sha256=
|
|
291
|
+
biotite/structure/io/gro/file.py,sha256=coW8u4r2e4XCYyMdaV5aMQIgmKf7Eupze_zqT9OoKS4,13142
|
|
292
|
+
biotite/structure/io/mmtf/__init__.py,sha256=bRfwruWJD422YBveXTEtIpTaE1acKhXVjkLyNyd77f8,682
|
|
295
293
|
biotite/structure/io/mmtf/assembly.py,sha256=_BpiIKC2GcMKK8TnIsqau2x6h7L1NZm6O4IvIq0wqIs,8397
|
|
296
|
-
biotite/structure/io/mmtf/convertarray.c,sha256=
|
|
297
|
-
biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd,sha256=
|
|
298
|
-
biotite/structure/io/mmtf/convertfile.c,sha256=
|
|
299
|
-
biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd,sha256=
|
|
300
|
-
biotite/structure/io/mmtf/decode.c,sha256=
|
|
301
|
-
biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd,sha256=
|
|
302
|
-
biotite/structure/io/mmtf/encode.c,sha256=
|
|
303
|
-
biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd,sha256=
|
|
304
|
-
biotite/structure/io/mmtf/file.py,sha256=
|
|
305
|
-
biotite/structure/io/mol/__init__.py,sha256=
|
|
306
|
-
biotite/structure/io/mol/convert.py,sha256=
|
|
307
|
-
biotite/structure/io/mol/
|
|
294
|
+
biotite/structure/io/mmtf/convertarray.c,sha256=cRS7a76yw3JBpK_oTdYKxHN_0icswtNnEAMAW38Ksnc,669776
|
|
295
|
+
biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd,sha256=6RE1s6ABGbApq0VNXUWeo4JUkq1eBOPTiPjAoR0luDk,105472
|
|
296
|
+
biotite/structure/io/mmtf/convertfile.c,sha256=n1B0NwhUuZBp9POZ_OjyEaurwLJNxvK84HgMo55JQQw,1548920
|
|
297
|
+
biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd,sha256=c-4AlsuK4enq18IYOwlNwW-5k4FvcWrVVU2-wsEz9aI,242176
|
|
298
|
+
biotite/structure/io/mmtf/decode.c,sha256=hM-IMPpb4-jqEOW8nTT5GdymMvoAH0gTwhtP_-aL-20,1379620
|
|
299
|
+
biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd,sha256=BmVZkW7TwLNNkUH71D2SDsImAzLKA08_xboJy_LVZ2c,203264
|
|
300
|
+
biotite/structure/io/mmtf/encode.c,sha256=D-GY1krw3yfed61ZJcCoeeR3whw4OUkokN72O1tt2Rg,1327444
|
|
301
|
+
biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd,sha256=mSVjhoeTuhvNefrCeTn7l4Cf9SApxDVqhbTOyQ1dLec,186880
|
|
302
|
+
biotite/structure/io/mmtf/file.py,sha256=hma7f6zGB317-UEAnD7oYKCszMUInM6NyRzsYMvGuiI,7179
|
|
303
|
+
biotite/structure/io/mol/__init__.py,sha256=JvYPvpyywjkpRzQZbu-6VfJNVrcLfwqOlKxx1cVgU-M,600
|
|
304
|
+
biotite/structure/io/mol/convert.py,sha256=mUflED5yKZZp5iczGOdi1AS17wXdgVhogZzuRdnW-1w,3895
|
|
305
|
+
biotite/structure/io/mol/ctab.py,sha256=HskYb61-lATyf-sdyjWQ0EqTEA1fkhc4qGeCxwSfnwA,13945
|
|
306
|
+
biotite/structure/io/mol/header.py,sha256=5gyk5bnsQZSNASmVOIVq7Ww8wM_qxhCy82aqAn_G4vE,3496
|
|
307
|
+
biotite/structure/io/mol/mol.py,sha256=b7mR7ErSqGy18RhlS-Bpbq_BfFbPjNWpdq8M1h-xmUU,6486
|
|
308
|
+
biotite/structure/io/mol/sdf.py,sha256=oSYybQE06MUGn1_J-bf0ArIp5_unKyzU75i1OUbin1c,32914
|
|
308
309
|
biotite/structure/io/netcdf/__init__.py,sha256=NqC3zLxcG9RVgTx06j-YTH_exKCsNcUidhtfM76r9Ho,361
|
|
309
310
|
biotite/structure/io/netcdf/file.py,sha256=TrLCr6NK07eoCh39Z92KDBZVDEvyH04lBy9zQasNI8A,2218
|
|
310
|
-
biotite/structure/io/npz/__init__.py,sha256=
|
|
311
|
-
biotite/structure/io/npz/file.py,sha256=
|
|
312
|
-
biotite/structure/io/pdb/__init__.py,sha256=
|
|
311
|
+
biotite/structure/io/npz/__init__.py,sha256=WclJwCoaeptFUcLCwhxyNSkwyBnmQ0L2Ioy6iyQYAPU,755
|
|
312
|
+
biotite/structure/io/npz/file.py,sha256=ITh50YvN9ySt06fVjmzjimz7BGTlzw7ySeY8QLeQimE,5109
|
|
313
|
+
biotite/structure/io/pdb/__init__.py,sha256=OqfxRonPcLc4F109ZmAeIFE7R6v7OgeanhMAz6orsvc,751
|
|
313
314
|
biotite/structure/io/pdb/convert.py,sha256=C9o5UNr0UABYN32szyFBSHJK5wGCloK70aauMo5bCPA,10951
|
|
314
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
315
|
-
biotite/structure/io/pdb/hybrid36.c,sha256=
|
|
316
|
-
biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=
|
|
315
|
+
biotite/structure/io/pdb/file.py,sha256=l4iwz3FywAYrHMwuPIm1n2-mOMCDVptgE7d-4DivQig,49242
|
|
316
|
+
biotite/structure/io/pdb/hybrid36.c,sha256=yw8r2oBNNEMROcjaxNltVl_ToNMAEHy9_Y4ksV0NtaY,1110900
|
|
317
|
+
biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=_Ow4PCTvSnSWEeLabzY3cEbFIwQqm8KVN4_NAHSWg38,148480
|
|
317
318
|
biotite/structure/io/pdbqt/__init__.py,sha256=_e0Cyo-9kxX__O47RJwLJrylIWfAOiqqX-eVZ6w5RpQ,454
|
|
318
319
|
biotite/structure/io/pdbqt/convert.py,sha256=8DEo4oOhp5MXqXXr3EWHnKD4y4zI6kqZ-Fjv19g6IjI,4133
|
|
319
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
320
|
-
biotite/structure/io/pdbx/__init__.py,sha256=
|
|
321
|
-
biotite/structure/io/pdbx/
|
|
322
|
-
biotite/structure/io/pdbx/
|
|
320
|
+
biotite/structure/io/pdbqt/file.py,sha256=okgs4zmpumCDkmrtQqbm6uCaM99J-cJlST1oNqGQqRY,27038
|
|
321
|
+
biotite/structure/io/pdbx/__init__.py,sha256=aEMr9p4gbeQQFeWgwohV0TBPOa77hFfdhk6pgjTola4,736
|
|
322
|
+
biotite/structure/io/pdbx/bcif.py,sha256=ds0XISbKBb1IDiNm215GW0Yfjlr9u8oA7oqvKQXFlig,21027
|
|
323
|
+
biotite/structure/io/pdbx/cif.py,sha256=_f93PMs269cwEwMszGlqtd4Ajy_wONW1TWdTV8ThLs0,33469
|
|
324
|
+
biotite/structure/io/pdbx/component.py,sha256=v_DJAM8VgDUgT7bQQdqrA7yn6vzU7fy_cQ9YljAvw4U,8389
|
|
325
|
+
biotite/structure/io/pdbx/convert.py,sha256=Pk89MknEXzAitzxYQdpwWSD4zz0IqOl3bFfu1xitGDU,61354
|
|
326
|
+
biotite/structure/io/pdbx/encoding.c,sha256=4ACRYAizAqwmks52_nvlH6F9eRU06h0qgSvs2hQBAms,4731168
|
|
327
|
+
biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=73o5we8o2VIxKD8JcV1TaqGw3P9EBql3sRQ0YZFZRsg,977408
|
|
328
|
+
biotite/structure/io/pdbx/legacy.py,sha256=Nix6sAg5S4-hRsbRXltx2CIQJKa7B7TPnPEgFLm8XaE,9108
|
|
323
329
|
biotite/structure/io/tng/__init__.py,sha256=3aQ_lcXAswoklT3IkbCK6yLKDMjBJwE7jU0ke0aNLmE,368
|
|
324
330
|
biotite/structure/io/tng/file.py,sha256=MW861kpo8fRqd3GFHFuV0LALkP6Q8nPhQkuj-uz1gU0,1348
|
|
325
331
|
biotite/structure/io/trr/__init__.py,sha256=ayqC8DyqjJ93VVytJEdmBHNcHTaIZOCfktzpBdxFFwU,370
|
|
326
332
|
biotite/structure/io/trr/file.py,sha256=4rS9HNoXQXCauquOTbkUWeveq9LEy0CKBNgi_IMTL-s,1348
|
|
327
333
|
biotite/structure/io/xtc/__init__.py,sha256=NHHFO6mTJCj3pfbP4saehOcKXrYr9CxVMSuJVb9QJHE,368
|
|
328
334
|
biotite/structure/io/xtc/file.py,sha256=UQ-QF5leM2ujMPde8RFe3dNShHXjl8lJ0qWU77QkbCY,1344
|
|
329
|
-
biotite-0.
|
|
330
|
-
biotite-0.
|
|
331
|
-
biotite-0.
|
|
332
|
-
biotite-0.
|
|
333
|
-
biotite-0.
|
|
335
|
+
biotite-0.41.0.dist-info/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
|
|
336
|
+
biotite-0.41.0.dist-info/METADATA,sha256=0LGUK1F2cL2-XIIPgWe4eINM6GkgaA3rUggBNeh2MZQ,7340
|
|
337
|
+
biotite-0.41.0.dist-info/WHEEL,sha256=nSybvzWlmdJnHiUQSY-d7V1ycwEVUTqXiTvr2eshg44,102
|
|
338
|
+
biotite-0.41.0.dist-info/top_level.txt,sha256=Tvj5T6Zfz3AhevTRlDRVhNC1WgPlFk-wDtSkzTgFM8w,8
|
|
339
|
+
biotite-0.41.0.dist-info/RECORD,,
|