biotite 1.1.0__cp313-cp313-win_amd64.whl → 1.2.0__cp313-cp313-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/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/localapp.py +2 -2
- biotite/application/msaapp.py +10 -10
- biotite/application/muscle/app3.py +3 -3
- biotite/application/muscle/app5.py +3 -3
- biotite/application/sra/app.py +0 -5
- biotite/application/util.py +21 -1
- biotite/application/viennarna/rnaalifold.py +8 -8
- biotite/application/viennarna/rnaplot.py +3 -1
- 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 +2 -3
- biotite/database/uniprot/check.py +2 -2
- biotite/database/uniprot/download.py +2 -5
- biotite/database/uniprot/query.py +3 -4
- 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 +33 -11
- biotite/sequence/align/banded.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/banded.pyx +21 -21
- biotite/sequence/align/cigar.py +2 -2
- biotite/sequence/align/kmeralphabet.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.pyx +2 -2
- biotite/sequence/align/kmersimilarity.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.pyx +6 -6
- biotite/sequence/align/localgapped.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/localgapped.pyx +47 -47
- biotite/sequence/align/localungapped.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.pyx +10 -10
- biotite/sequence/align/matrix.py +12 -3
- biotite/sequence/align/multiple.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.pyx +35 -35
- biotite/sequence/align/permutation.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.cp313-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.pyx +2 -2
- biotite/sequence/align/statistics.py +1 -1
- biotite/sequence/align/tracetable.cp313-win_amd64.pyd +0 -0
- biotite/sequence/alphabet.py +2 -2
- biotite/sequence/annotation.py +19 -13
- biotite/sequence/codec.cp313-win_amd64.pyd +0 -0
- biotite/sequence/codon.py +1 -2
- biotite/sequence/graphics/alignment.py +25 -39
- 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.cp313-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.cp313-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.cp313-win_amd64.pyd +0 -0
- biotite/sequence/profile.py +19 -25
- biotite/sequence/search.py +0 -1
- biotite/sequence/seqtypes.py +12 -5
- biotite/sequence/sequence.py +1 -2
- biotite/structure/__init__.py +2 -0
- biotite/structure/alphabet/i3d.py +1 -2
- biotite/structure/alphabet/pb.py +1 -2
- biotite/structure/alphabet/unkerasify.py +8 -2
- biotite/structure/atoms.py +35 -27
- biotite/structure/basepairs.py +26 -26
- biotite/structure/bonds.cp313-win_amd64.pyd +0 -0
- biotite/structure/bonds.pyx +8 -5
- biotite/structure/box.py +19 -21
- biotite/structure/celllist.cp313-win_amd64.pyd +0 -0
- biotite/structure/celllist.pyx +83 -67
- biotite/structure/chains.py +5 -37
- biotite/structure/charges.cp313-win_amd64.pyd +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 +15 -15
- biotite/structure/hbond.py +17 -19
- biotite/structure/info/atoms.py +11 -2
- biotite/structure/info/ccd.py +0 -2
- biotite/structure/info/components.bcif +0 -0
- biotite/structure/info/groups.py +0 -3
- biotite/structure/info/misc.py +0 -1
- biotite/structure/info/radii.py +92 -22
- biotite/structure/info/standardize.py +1 -2
- 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 +39 -13
- biotite/structure/io/pdb/convert.py +2 -3
- biotite/structure/io/pdb/file.py +11 -22
- biotite/structure/io/pdb/hybrid36.cp313-win_amd64.pyd +0 -0
- biotite/structure/io/pdbqt/file.py +4 -4
- biotite/structure/io/pdbx/bcif.py +22 -7
- biotite/structure/io/pdbx/cif.py +20 -7
- biotite/structure/io/pdbx/component.py +6 -0
- biotite/structure/io/pdbx/compress.py +2 -2
- biotite/structure/io/pdbx/convert.py +222 -33
- biotite/structure/io/pdbx/encoding.cp313-win_amd64.pyd +0 -0
- biotite/structure/io/trajfile.py +9 -6
- biotite/structure/io/util.py +38 -0
- biotite/structure/mechanics.py +0 -1
- biotite/structure/molecules.py +0 -15
- 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.cp313-win_amd64.pyd +0 -0
- biotite/structure/sasa.pyx +2 -1
- biotite/structure/segments.py +68 -9
- 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 +3 -3
- biotite/version.py +9 -4
- biotite/visualize.py +111 -1
- {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/METADATA +5 -3
- {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/RECORD +155 -135
- {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/WHEEL +0 -0
- {biotite-1.1.0.dist-info → biotite-1.2.0.dist-info}/licenses/LICENSE.rst +0 -0
|
@@ -1,85 +1,102 @@
|
|
|
1
1
|
biotite/__init__.py,sha256=gzqOy5P7Zf667uYuUwqjLLW0GiBdqc23NLcZaXMuHKw,563
|
|
2
2
|
biotite/copyable.py,sha256=Qnja44k58dAc3WkIUM0svqrbvqO9pSV-Atr9MUJSoCI,1968
|
|
3
|
-
biotite/file.py,sha256=
|
|
3
|
+
biotite/file.py,sha256=ktpRUk0OH5_wKIJHtCX3zDjXeJ3eQ4ycDjpp7HttUYM,6977
|
|
4
4
|
biotite/setup_ccd.py,sha256=9StRz4qPVdTJNrPUoA_liwvkKnTb8O0U8PDxt1tDVwc,6248
|
|
5
|
-
biotite/version.py,sha256=
|
|
6
|
-
biotite/visualize.py,sha256=
|
|
5
|
+
biotite/version.py,sha256=bkKCVnDOy6zWTEO3tQhqGU5jAs0SW1QnX5UfCnuEW3U,532
|
|
6
|
+
biotite/visualize.py,sha256=z4lBfJAt5YxGqtgxgcLHKMwVcE4u6fqExEyrOHcSiaY,14330
|
|
7
7
|
biotite/application/__init__.py,sha256=Rei3EwlpCnC_cJNQoTJYY_Gw_qLdsqgnRxV5b1slHJU,3148
|
|
8
|
-
biotite/application/application.py,sha256=
|
|
9
|
-
biotite/application/localapp.py,sha256=
|
|
10
|
-
biotite/application/msaapp.py,sha256=
|
|
11
|
-
biotite/application/util.py,sha256=
|
|
12
|
-
biotite/application/webapp.py,sha256=
|
|
8
|
+
biotite/application/application.py,sha256=J9ydVvN_5C3nYuLl12EPBhM67i0GQm6MPy0F1K-jdgc,8372
|
|
9
|
+
biotite/application/localapp.py,sha256=eRV926GjvicYCTODIO2IOhwHfw2sjoHvhLxoOW5WScQ,10609
|
|
10
|
+
biotite/application/msaapp.py,sha256=X4nb0sXHWSBn8n2dLPScMJMVRtHegW2JhmjVmUzv_-c,12337
|
|
11
|
+
biotite/application/util.py,sha256=z05IiFQXGaVW3pdUeeHL6izCaxZNrGbs10k9P79gID8,2580
|
|
12
|
+
biotite/application/webapp.py,sha256=g2NJ7Fn1-28HC-saOd62ohp-s77WSsqqcVc_2N96al0,2221
|
|
13
13
|
biotite/application/autodock/__init__.py,sha256=QtcZDgjFXYaHYSoVtnx8Bs2YA9TvwCg0fSkMfrxKK3k,327
|
|
14
|
-
biotite/application/autodock/app.py,sha256=
|
|
14
|
+
biotite/application/autodock/app.py,sha256=30-FGdjutoj5pHCxiedZywrzeFRm0Fv45eVpFaO84YU,19192
|
|
15
15
|
biotite/application/blast/__init__.py,sha256=90FNcYrxTkEGlzf8RSR1uQkSp4BF42S99XK6FXnmUY4,380
|
|
16
16
|
biotite/application/blast/alignment.py,sha256=aPbMz_qyH8Izl_g24BQKgvh6McYXyx0tPsGcocwQ4E8,3209
|
|
17
|
-
biotite/application/blast/webapp.py,sha256=
|
|
17
|
+
biotite/application/blast/webapp.py,sha256=7-r_Jw7gHysUb8Zjsv5mc0WyFdbWblamqVXYq2He0-A,14875
|
|
18
18
|
biotite/application/clustalo/__init__.py,sha256=UtEQiS9nDZF9-Sup3kbi06mTjv6YRD9Qbu5A722bNlY,338
|
|
19
|
-
biotite/application/clustalo/app.py,sha256=
|
|
19
|
+
biotite/application/clustalo/app.py,sha256=hBnmdh2nhA1ipxz4OzVZ52UMyA0hqxf_MAej3bygbWU,7637
|
|
20
20
|
biotite/application/dssp/__init__.py,sha256=smuKF9_8g5xzY-MFjYXTYa3wbTfQD4g6L3TDCfMTr8w,335
|
|
21
21
|
biotite/application/dssp/app.py,sha256=ZBgW5R5Y1nt1D69imUpc_79-XPm9N3yqfdZKxgVc8-M,5482
|
|
22
22
|
biotite/application/mafft/__init__.py,sha256=urPUmmuKAsB9DQeEeaj8EDt3uL0UjgBSo76H2HnLsLs,327
|
|
23
23
|
biotite/application/mafft/app.py,sha256=W_iWXuaO0CaCFpnTyawlmQ1P0wt9pnGnwr-AzAudLM0,3397
|
|
24
24
|
biotite/application/muscle/__init__.py,sha256=26qqctlXpZqoFBD1K_y_Zv7QZfDdMHOodGAXW20r42Q,351
|
|
25
|
-
biotite/application/muscle/app3.py,sha256=
|
|
26
|
-
biotite/application/muscle/app5.py,sha256=
|
|
25
|
+
biotite/application/muscle/app3.py,sha256=pJtzRTyByxVFpcjMJCEBP4UWfRslpk5pc6lPuOjrbNE,7880
|
|
26
|
+
biotite/application/muscle/app5.py,sha256=aNuZzvymFXK3h3Iy0A0W90K_poPs_5qVOaYmVwS5mCY,4637
|
|
27
27
|
biotite/application/sra/__init__.py,sha256=GwfAKbOfTTYaLVdTwdkJxCMCY-SUd7WsN7BDAU2Xq7A,571
|
|
28
|
-
biotite/application/sra/app.py,sha256=
|
|
28
|
+
biotite/application/sra/app.py,sha256=usJZ5uZ0durKYIBF58KauxBkwBtvDAG-iX_I4IBCRgY,16021
|
|
29
29
|
biotite/application/tantan/__init__.py,sha256=XivhGt3vpQ7EvRKdxT_jQNXIPnvVxAUXCnHYZkSuiHY,340
|
|
30
30
|
biotite/application/tantan/app.py,sha256=nWE3rlDqf3-jfpIXUw1ddH4ooiD2lZ1GeqBvGXEXtsI,7637
|
|
31
31
|
biotite/application/viennarna/__init__.py,sha256=HlvHvgsTdzTbq3e9luAmMP-4DbkiBqx5ru69swdz4ns,491
|
|
32
|
-
biotite/application/viennarna/rnaalifold.py,sha256=
|
|
32
|
+
biotite/application/viennarna/rnaalifold.py,sha256=16arcCP55XC8OXNLkSLPNrMrHuU7b5VLyz0xqO_MDhI,10993
|
|
33
33
|
biotite/application/viennarna/rnafold.py,sha256=skqZzqE-otS6uL38isGpikLUbwf8srsOQirINB6qi-8,8164
|
|
34
|
-
biotite/application/viennarna/rnaplot.py,sha256=
|
|
35
|
-
biotite/application/viennarna/util.py,sha256=
|
|
34
|
+
biotite/application/viennarna/rnaplot.py,sha256=Y8-HLg27i9USuxKM2Xut2TFU8VR85Hd_eTEsMuDqRB4,6704
|
|
35
|
+
biotite/application/viennarna/util.py,sha256=lfssotSqZl4cO1ibgtgXgEFVzL9s1xMM-99wmuaD-wc,2712
|
|
36
36
|
biotite/database/__init__.py,sha256=N3PuLKuEbQ0J55CddwryBGiLfYSazC697F8KnxizrKY,748
|
|
37
37
|
biotite/database/error.py,sha256=L_FvDa-F4XUaCIVo6ZtLXIMn6P-cv783lvxR_Rtluqw,426
|
|
38
|
+
biotite/database/afdb/__init__.py,sha256=SMcUJ0mPNdc-bnnW3wlsw7sDyBwGfU-_2Z2Dt_nB6xo,345
|
|
39
|
+
biotite/database/afdb/download.py,sha256=GMyGuT5RHSWXdwA712_1yLWwloEBgJEWsbLTtVVs6vs,6558
|
|
38
40
|
biotite/database/entrez/__init__.py,sha256=88kXhS1XqXb4exnfZIaKD98t3RH3gEZBiNR-aBhl-OE,403
|
|
39
41
|
biotite/database/entrez/check.py,sha256=3JQZshjekA1woJll6UefEsUZ8kMw-MG1uh86jGgDomQ,1913
|
|
40
|
-
biotite/database/entrez/dbnames.py,sha256=
|
|
41
|
-
biotite/database/entrez/download.py,sha256=
|
|
42
|
-
biotite/database/entrez/key.py,sha256=
|
|
43
|
-
biotite/database/entrez/query.py,sha256=
|
|
42
|
+
biotite/database/entrez/dbnames.py,sha256=uQ5t5PCb1qrAmAdh8xWzO0WPWY3DybkW-JS4BRjQiR0,2873
|
|
43
|
+
biotite/database/entrez/download.py,sha256=x7GB9a8SGpofqLDezM8aiC2cMXCzOPjcfOymq1tOD7s,7661
|
|
44
|
+
biotite/database/entrez/key.py,sha256=O0XR87q51PNDXXvalyl0mZv7JvGip4QZwGrBcJb114I,1152
|
|
45
|
+
biotite/database/entrez/query.py,sha256=2YOolrsXreAapvOxdH-3EKkNsd5jqubou7Xl26rVOvg,7636
|
|
44
46
|
biotite/database/pubchem/__init__.py,sha256=YvB4_HXgHto_Jw6PdsSNea-sFoh0HtEUWD7ByyxH2Xg,690
|
|
45
|
-
biotite/database/pubchem/download.py,sha256=
|
|
46
|
-
biotite/database/pubchem/error.py,sha256=
|
|
47
|
-
biotite/database/pubchem/query.py,sha256=
|
|
47
|
+
biotite/database/pubchem/download.py,sha256=oFIXjU_B6BpyzVvuFFZDdW4pPkLA06Tx1PsWF8TV1MQ,10128
|
|
48
|
+
biotite/database/pubchem/error.py,sha256=zQKHntwQDkcdm2ImKQgta2V45KeUaFfmM8tTaVwSMXo,908
|
|
49
|
+
biotite/database/pubchem/query.py,sha256=NJoFI-feTXivZfa6AoJGJDrYA6v_CEQSQjR5dDExvTM,26905
|
|
48
50
|
biotite/database/pubchem/throttle.py,sha256=V4RzypMfh1IaBC8yZrH1l8W1k7v2KLpj1_fK94k-__w,3384
|
|
49
51
|
biotite/database/rcsb/__init__.py,sha256=BKYOAhSIX1zb00wp_6bw30M7XGliu64B35Dm2Gf-A14,345
|
|
50
|
-
biotite/database/rcsb/download.py,sha256=
|
|
51
|
-
biotite/database/rcsb/query.py,sha256=
|
|
52
|
+
biotite/database/rcsb/download.py,sha256=hknojHvR_pj6Q_zwuHEJbQudOZehRG0dBsHZzlQkTfk,5836
|
|
53
|
+
biotite/database/rcsb/query.py,sha256=Dvpp7nV4UwPH_3gVmIyHmvP4AsIHGQcgoZPUDkULG-4,33858
|
|
52
54
|
biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
|
|
53
|
-
biotite/database/uniprot/check.py,sha256=
|
|
54
|
-
biotite/database/uniprot/download.py,sha256=
|
|
55
|
-
biotite/database/uniprot/query.py,sha256=
|
|
55
|
+
biotite/database/uniprot/check.py,sha256=cVF0UfiUCT2nZ1jLWVfs1Ygghzx30ZXy1yj2vvASL1A,1418
|
|
56
|
+
biotite/database/uniprot/download.py,sha256=7hv050jxaeVQpmKiAEG_pRsyEtHbiTH-6Qc1VUsjBpk,4360
|
|
57
|
+
biotite/database/uniprot/query.py,sha256=qvwvCF8ae3WZLrT-GNt-DppKAnwdHQ-3XF8TJfZ9N6A,7810
|
|
58
|
+
biotite/interface/__init__.py,sha256=Mb4FPYW46Y6iduU8XVwWXUtgpsyVrk5gvM5xS2k1F40,736
|
|
59
|
+
biotite/interface/version.py,sha256=e-hm-dr8ju9T5eNQYpaoPYEIUCbCx0avR-CoHlZln4I,2435
|
|
60
|
+
biotite/interface/warning.py,sha256=3kwFPSEZMk8Q7yccD1Fsgu51gENA1ZbcsdNG_RBnrUM,596
|
|
61
|
+
biotite/interface/openmm/__init__.py,sha256=_sFCuVdsc3CaMAKq55OvnUYFETqYpOrqyVNbJb4nBTA,521
|
|
62
|
+
biotite/interface/openmm/state.py,sha256=DuoheeVwF8FqLQmer2mRJ_gRjnbIOkOsJGMfd6ARFdk,2816
|
|
63
|
+
biotite/interface/openmm/system.py,sha256=wIAlQQzJMfHJDSMIJ6CwScNgJ10DBFiBSLkR7BU4o3s,7245
|
|
64
|
+
biotite/interface/pymol/__init__.py,sha256=nu7HLGrp9DF-iOCbt1oMn8-TeOnOn2CipkwPAXCQACA,6766
|
|
65
|
+
biotite/interface/pymol/cgo.py,sha256=naAQ-5R2wpsbXy3UkjkFvGkzRx8xVr53qlGpltyRO8I,10205
|
|
66
|
+
biotite/interface/pymol/convert.py,sha256=mukBkBjGO0kv5Ec_ALG9i3BPYUCap1Zf1LiIJvBLrZw,6229
|
|
67
|
+
biotite/interface/pymol/display.py,sha256=R8vgVRoByPr_mkhm81fJdtzyZCMzRj8jyfviNPAfTLU,8725
|
|
68
|
+
biotite/interface/pymol/object.py,sha256=t_sT7lu1Vh_jC0uzzv7ydSf02jzeClT4tfiPN9fIMyY,45419
|
|
69
|
+
biotite/interface/pymol/shapes.py,sha256=w0_fBczmPtI3tQrmrwOp8owg6WUfhX3qXhKXibtfwBA,6244
|
|
70
|
+
biotite/interface/pymol/startup.py,sha256=vHdpd3RusQXJr9PSPbJxWbo8CuJSN4YpecNCM0az1Ak,4788
|
|
71
|
+
biotite/interface/rdkit/__init__.py,sha256=HWKhHJY0bCKlDDj3g-Ey7sjis0tsan6aC7b_l8qB0GA,466
|
|
72
|
+
biotite/interface/rdkit/mol.py,sha256=GH0iSrs54qNWSZbVjPw3T0hjJbTWkCFjTwpq8ef7XTI,20134
|
|
56
73
|
biotite/sequence/__init__.py,sha256=fUoOYLTavBTicHu-JCQkvrCAyRfKRspfCItufOBDGGE,3507
|
|
57
|
-
biotite/sequence/alphabet.py,sha256=
|
|
58
|
-
biotite/sequence/annotation.py,sha256=
|
|
74
|
+
biotite/sequence/alphabet.py,sha256=rI3KC_U05_gdLdXypGDicmJWvU2ruISMlCxr-NGPi0E,17782
|
|
75
|
+
biotite/sequence/annotation.py,sha256=XeVjiagSR5aVIRywAIl927Iwdgni4VKj7SyQJjP9Wkw,30541
|
|
59
76
|
biotite/sequence/codec.pyx,sha256=JIKPODmlk7RGW1GIhoUSrbfS1XRJa6vbOb5ur-62jIc,5116
|
|
60
|
-
biotite/sequence/codon.py,sha256=
|
|
77
|
+
biotite/sequence/codon.py,sha256=zXGEitMgOomhems28nQtydwR3NH-3lxmCOYAGDKgITQ,16822
|
|
61
78
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
62
|
-
biotite/sequence/profile.py,sha256=
|
|
63
|
-
biotite/sequence/search.py,sha256=
|
|
64
|
-
biotite/sequence/seqtypes.py,sha256=
|
|
65
|
-
biotite/sequence/sequence.py,sha256=
|
|
66
|
-
biotite/sequence/align/__init__.py,sha256=
|
|
67
|
-
biotite/sequence/align/alignment.py,sha256=
|
|
68
|
-
biotite/sequence/align/banded.pyx,sha256=
|
|
79
|
+
biotite/sequence/profile.py,sha256=JiC0v8_MVvx9sLzVQxmY7qOGRq2uCV7ljRUEadzt78Y,19810
|
|
80
|
+
biotite/sequence/search.py,sha256=9REc8_sR_O67HjNmrNtGR1WxDlwSNcZ4ysrITrRCfUs,3205
|
|
81
|
+
biotite/sequence/seqtypes.py,sha256=szRx8sKaLOTq1Lp8qtg7Ru4dd_3SALl2zBqw0DFzy5s,23966
|
|
82
|
+
biotite/sequence/sequence.py,sha256=lWG4TjGLDjhBStQk-y3ECLjElch4korQ5BSAiGJ-X0Q,12064
|
|
83
|
+
biotite/sequence/align/__init__.py,sha256=ncVKWSjBtX6mjeikahsOXheqnlh9bT4mAzwkcMPYMWU,4910
|
|
84
|
+
biotite/sequence/align/alignment.py,sha256=YSQCSXaUJ-q78RP3NAAsBhQ04aDtWRZxdjKNJD7on3o,23082
|
|
85
|
+
biotite/sequence/align/banded.pyx,sha256=Td2d38XuNUzPK0X--Zo_GiogjdY2LntmvAA_ZhQhcwA,25951
|
|
69
86
|
biotite/sequence/align/buckets.py,sha256=3QLzBDorc0ZYJv2SNuRn-mWmT3I2XljfCD1AoNV3ldw,2535
|
|
70
|
-
biotite/sequence/align/cigar.py,sha256=
|
|
71
|
-
biotite/sequence/align/kmeralphabet.pyx,sha256=
|
|
87
|
+
biotite/sequence/align/cigar.py,sha256=5Q7TU4jVsCsk1gbyVtwiX3ugvqN90WRGqhl0UCNteec,14760
|
|
88
|
+
biotite/sequence/align/kmeralphabet.pyx,sha256=CW2EymGklsnL_REWTdGx_r2pe0fNwdDmfjmSqf-IfiY,19231
|
|
72
89
|
biotite/sequence/align/kmersimilarity.pyx,sha256=tmAKKZY2JOvnPjU0PQqInvb_MRo7whUxgX0iVZNWIbg,8665
|
|
73
|
-
biotite/sequence/align/kmertable.pyx,sha256=
|
|
74
|
-
biotite/sequence/align/localgapped.pyx,sha256=
|
|
75
|
-
biotite/sequence/align/localungapped.pyx,sha256=
|
|
76
|
-
biotite/sequence/align/matrix.py,sha256=
|
|
90
|
+
biotite/sequence/align/kmertable.pyx,sha256=NM0ja9hxigllGNu4_8lrnUwYRi58EUDoHTunwd2y4ZA,125108
|
|
91
|
+
biotite/sequence/align/localgapped.pyx,sha256=4rYWmMe_6fxmnAK-7mN3cV6dTy3xirWG4T65a7iayWk,33998
|
|
92
|
+
biotite/sequence/align/localungapped.pyx,sha256=2cRRgd4cbgClyzEV_PJJf5FUp8XqXjk4P0tAkbIuEKM,9938
|
|
93
|
+
biotite/sequence/align/matrix.py,sha256=IXh2nM_nmClLQ_qRiT1cQWGhFAJuPUDHzbzWVxcV6qY,22991
|
|
77
94
|
biotite/sequence/align/multiple.pyx,sha256=J9MLWqzSvJN-1eWsjCPGlCdr51cSYkkiwyjyyE46qFo,22585
|
|
78
|
-
biotite/sequence/align/pairwise.pyx,sha256=
|
|
95
|
+
biotite/sequence/align/pairwise.pyx,sha256=ekSxD8zMK8lbSZGAxZAPe_bo339Me6ON4lTvzM-jn9I,23266
|
|
79
96
|
biotite/sequence/align/permutation.pyx,sha256=G9quD4yyP_5BCgVkJE_Xf_9wovn1Bg_MXPtltopaUYw,10340
|
|
80
97
|
biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
|
|
81
|
-
biotite/sequence/align/selector.pyx,sha256=
|
|
82
|
-
biotite/sequence/align/statistics.py,sha256=
|
|
98
|
+
biotite/sequence/align/selector.pyx,sha256=YQB2rASzwMa_7bAGV_mPa828MIvrVQMuVObCAlW4B34,34425
|
|
99
|
+
biotite/sequence/align/statistics.py,sha256=8Uv21eDMx17LC-2amUbgqbgS4lezcNdZiaiZ9y9EfFg,9916
|
|
83
100
|
biotite/sequence/align/tracetable.pxd,sha256=JhxS9sl5wV6HD_cJMXaBt1zm_4_y5twsBs5buMVDYI0,2888
|
|
84
101
|
biotite/sequence/align/tracetable.pyx,sha256=ReX5kId42RQqlMZmNRpzMmF3_9Z4laL8dXK88IiW-6c,15824
|
|
85
102
|
biotite/sequence/align/matrix_data/3Di.mat,sha256=-vJKsfx0GvUTWQLn6E4iQqAb17886onYD5277vE0DSc,2044
|
|
@@ -175,11 +192,11 @@ biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=E52mnslKgzhNeB6n3LNT
|
|
|
175
192
|
biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=xABdTJkFD8zQKcmyvnt6jL3saEP0o9CF7EcP3KM9aU8,1875
|
|
176
193
|
biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=FzdtLvS9xnAvNH_xCZ9P1ydCHCMaFeYC6VkqA844x5Y,1875
|
|
177
194
|
biotite/sequence/graphics/__init__.py,sha256=nQMB_4upyPX-9_f6rThY9-KSRkGtBi_WRxMc92v2A6I,1185
|
|
178
|
-
biotite/sequence/graphics/alignment.py,sha256=
|
|
195
|
+
biotite/sequence/graphics/alignment.py,sha256=G4OTCmF48Z7qmqaSMGl_v4BmlDnB1y4os3B8BLd2Cts,40469
|
|
179
196
|
biotite/sequence/graphics/colorschemes.py,sha256=ISSJvX0c840TJEhnjH-Y57jo8LhHCuaU3DTFNu3nxWI,5687
|
|
180
|
-
biotite/sequence/graphics/dendrogram.py,sha256=
|
|
181
|
-
biotite/sequence/graphics/features.py,sha256=
|
|
182
|
-
biotite/sequence/graphics/logo.py,sha256=
|
|
197
|
+
biotite/sequence/graphics/dendrogram.py,sha256=GJ5Ic-C_RPolcsZqHmRJtAurIoVsPYkmcie2Tftcc4c,7901
|
|
198
|
+
biotite/sequence/graphics/features.py,sha256=5-6cRftSyVMed8bZ22Yh0nskXKrfa3psMuLXtvXT2aE,17841
|
|
199
|
+
biotite/sequence/graphics/logo.py,sha256=z_D7gzaVfROB-wTpDql4VJHb-iG5L2boOy6ScJ56piU,3794
|
|
183
200
|
biotite/sequence/graphics/plasmid.py,sha256=9SZItKWdLSCdTbolBsWDPyVDb-75aYGtTsPKH_9ywio,26714
|
|
184
201
|
biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=O5CIZo3B4kA6ItoEAFCcCwvkFlz5-9GH4fRH-Hh6Ugc,964
|
|
185
202
|
biotite/sequence/graphics/color_schemes/autumn.json,sha256=ykykAiaOGDBaBLXwtjqVBRYmce-8uK4NgtwHgnkLfio,893
|
|
@@ -204,129 +221,132 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
|
|
|
204
221
|
biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
|
|
205
222
|
biotite/sequence/io/general.py,sha256=7JQBPcp0gVblaGUwYW05dYreyOG9J5LFUz-v6XGGX-k,6895
|
|
206
223
|
biotite/sequence/io/fasta/__init__.py,sha256=6aXOhuGVn4FJoJMop3HedLQ6IRrZiuEOWCrC-sGtu28,742
|
|
207
|
-
biotite/sequence/io/fasta/convert.py,sha256=
|
|
208
|
-
biotite/sequence/io/fasta/file.py,sha256=
|
|
224
|
+
biotite/sequence/io/fasta/convert.py,sha256=s0a2MCHVEAue5vuesCiEINjweBAZWoX4LF4QZDDttws,9689
|
|
225
|
+
biotite/sequence/io/fasta/file.py,sha256=fmVDi40n7lDmdwNFQl4FPccL3NDNMD8e9gG8g6ZNP1w,9317
|
|
209
226
|
biotite/sequence/io/fastq/__init__.py,sha256=p3dmgI_ytFxai_tdrqpRhkTUzBkQMM5J2cNQ1p9-JXI,607
|
|
210
227
|
biotite/sequence/io/fastq/convert.py,sha256=BKZ3_wHFeynAfDLNKDctI2Amfl5-F0wNyV6qv_uctMs,3749
|
|
211
|
-
biotite/sequence/io/fastq/file.py,sha256=
|
|
228
|
+
biotite/sequence/io/fastq/file.py,sha256=Ub_a3jhtjnHztN35_eAK7KQpM2xaG4vtZKam5JAx5gI,18324
|
|
212
229
|
biotite/sequence/io/genbank/__init__.py,sha256=DVTqOI2ilzlo2O-IyfUv-7WxsxVIBPPtoEjZ1MNV3Pk,490
|
|
213
230
|
biotite/sequence/io/genbank/annotation.py,sha256=J8_DODOqNcPvj_le5md3-9nttlNV3ViXCNtGAdNtSBk,9700
|
|
214
|
-
biotite/sequence/io/genbank/file.py,sha256=
|
|
231
|
+
biotite/sequence/io/genbank/file.py,sha256=lT3S853nNLUUlxQdkvvNADJa-wJ_5QIgHYZmSF6f0BM,20927
|
|
215
232
|
biotite/sequence/io/genbank/metadata.py,sha256=bF3fttJMmFa6eELvQ9UqzFVSgGkVUqLfVsgiLz01LBA,9687
|
|
216
|
-
biotite/sequence/io/genbank/sequence.py,sha256=
|
|
233
|
+
biotite/sequence/io/genbank/sequence.py,sha256=_y-IcIad0EYUYovy9hcCt8DzKfoboxBPJXE5Nhw72yA,5677
|
|
217
234
|
biotite/sequence/io/gff/__init__.py,sha256=-m--LdBhi8sDWD0mbjxoxU_hRPSeJ7APYCYFKkpb448,949
|
|
218
|
-
biotite/sequence/io/gff/convert.py,sha256=
|
|
219
|
-
biotite/sequence/io/gff/file.py,sha256=
|
|
235
|
+
biotite/sequence/io/gff/convert.py,sha256=obgIoTAh5a0SCaS4HRfjGUY7X0dXd6LG-P7hRIBeZ5Q,4739
|
|
236
|
+
biotite/sequence/io/gff/file.py,sha256=ilxgm-3_QndGCQThjSTuyk4mNsUhPZlD_SPvWnqrDmE,16525
|
|
220
237
|
biotite/sequence/phylo/__init__.py,sha256=aNP1B9DNNTXMyiqWkzF6JZFynlcmIg-bDeN-eDKakgQ,1297
|
|
221
238
|
biotite/sequence/phylo/nj.pyx,sha256=YOseJP7fKCnqhh8w3mK1z3fw6cKF5sU5oRkb1D3X9vI,7501
|
|
222
239
|
biotite/sequence/phylo/tree.pyx,sha256=kmT2kO9cH3svQOxsyuPLfbUsWnTNdfVrx5xaxcmTC3I,40374
|
|
223
240
|
biotite/sequence/phylo/upgma.pyx,sha256=llgc-9fEOU-D1a-ESMSIAoPjHvsd_L0-GnwkL-uzWNc,5376
|
|
224
|
-
biotite/structure/__init__.py,sha256=
|
|
225
|
-
biotite/structure/atoms.py,sha256=
|
|
226
|
-
biotite/structure/basepairs.py,sha256
|
|
227
|
-
biotite/structure/bonds.pyx,sha256=
|
|
228
|
-
biotite/structure/box.py,sha256=
|
|
229
|
-
biotite/structure/celllist.pyx,sha256=
|
|
230
|
-
biotite/structure/chains.py,sha256=
|
|
241
|
+
biotite/structure/__init__.py,sha256=nTlutppQQCPYYPH0MXB104--L70rOPUj6P8CcRDyUKA,5623
|
|
242
|
+
biotite/structure/atoms.py,sha256=x6SnfqCTZIWWReEh62YDUTF3sPjjJKkldDYqu2XigDk,52406
|
|
243
|
+
biotite/structure/basepairs.py,sha256=-Jvzj9rOxy0ojTF0EEFtQRbS1S9hdg0Rc-xwY1Nhi2M,51417
|
|
244
|
+
biotite/structure/bonds.pyx,sha256=mFJxrbNtGDHQWdSD5KwEJgGsIsfZBo8B18C4DvknYvo,71734
|
|
245
|
+
biotite/structure/box.py,sha256=sBljPGIoBg27PHb2v1r6lsEfJejTmieOI6zAbKt6Fog,19336
|
|
246
|
+
biotite/structure/celllist.pyx,sha256=7U5gEO99xp0pd07ZeMtlY77j_5wU-9e9la0tIR8wB1k,35453
|
|
247
|
+
biotite/structure/chains.py,sha256=ybGE1OaLH3eEe9VwKmVfa5tF0UMtmma0dh8yQjxz2S4,8766
|
|
231
248
|
biotite/structure/charges.pyx,sha256=ZqQeMaSr0kjgBWRN_mYWBXV6wYtglADRrvY4ZQ0KKSU,19341
|
|
232
|
-
biotite/structure/compare.py,sha256=
|
|
233
|
-
biotite/structure/density.py,sha256=
|
|
234
|
-
biotite/structure/dotbracket.py,sha256=
|
|
249
|
+
biotite/structure/compare.py,sha256=h6v6pAVxLiDKzeEbFltI9OuLtVBNVCAmFU7m8whFcKE,28034
|
|
250
|
+
biotite/structure/density.py,sha256=bCRVos_1LF2Uqq8fmVnZNhRUdDupdTXgPem-bkca24s,4306
|
|
251
|
+
biotite/structure/dotbracket.py,sha256=tzSvOB9mWErIIg9dcXY9wz-gha6MxQ_zESyPm18fmRg,7475
|
|
235
252
|
biotite/structure/error.py,sha256=NaQBi7CGUYpa7-Y9t0We8iVEJwqpsNWLXkr1PTBKlxQ,822
|
|
236
|
-
biotite/structure/filter.py,sha256=
|
|
237
|
-
biotite/structure/geometry.py,sha256=
|
|
238
|
-
biotite/structure/hbond.py,sha256=
|
|
239
|
-
biotite/structure/integrity.py,sha256=
|
|
240
|
-
biotite/structure/mechanics.py,sha256=
|
|
241
|
-
biotite/structure/molecules.py,sha256=
|
|
242
|
-
biotite/structure/pseudoknots.py,sha256=
|
|
253
|
+
biotite/structure/filter.py,sha256=Iw5G6Qa53D6ZA-XH0fLY-vosl6AZHMJtmIvs4hcHc94,18585
|
|
254
|
+
biotite/structure/geometry.py,sha256=vAMYYyTU-wrhx5twVYLrtan0UEdLmG-C-opuTZjhHjM,24331
|
|
255
|
+
biotite/structure/hbond.py,sha256=0DoqTzLHq529OOViZIhIAl0OiEHCDVJyTmCDa3ZKRQA,15645
|
|
256
|
+
biotite/structure/integrity.py,sha256=v1lJrEcvH_bdV0-5ToIKBPWKV5Mq-TDSlSFZgRjn614,6976
|
|
257
|
+
biotite/structure/mechanics.py,sha256=hg1wre3uPAuXfyZ976mryvd0_Db1UE-iTLE9qjfwijw,2659
|
|
258
|
+
biotite/structure/molecules.py,sha256=VdfD4w5cbbT4_qQdNHYgIjqwQSvaS-SbfNE5ytNCBqI,15628
|
|
259
|
+
biotite/structure/pseudoknots.py,sha256=OXofcx8-ePheFQ5du9ZGKRxEAzZAco01nw7X70_Yk3c,22789
|
|
243
260
|
biotite/structure/rdf.py,sha256=XAkbnbfk0wx_cIlrDYXBMUzzShgICUCpyPPfTNviWBQ,8349
|
|
244
|
-
biotite/structure/repair.py,sha256=
|
|
245
|
-
biotite/structure/residues.py,sha256=
|
|
246
|
-
biotite/structure/
|
|
247
|
-
biotite/structure/
|
|
248
|
-
biotite/structure/
|
|
249
|
-
biotite/structure/
|
|
250
|
-
biotite/structure/
|
|
251
|
-
biotite/structure/
|
|
252
|
-
biotite/structure/
|
|
261
|
+
biotite/structure/repair.py,sha256=MqWQTIOH67giGQ-_yRFARa0uqNFRHHOb-PwSBkdzUL4,7298
|
|
262
|
+
biotite/structure/residues.py,sha256=hiCCLRmowlAm6C24f7gwvhVoZLSzD_z8DKxuwPD30bQ,22898
|
|
263
|
+
biotite/structure/rings.py,sha256=ei1suKE53QGP5XvEPeO8tDGvbYkkI5f6Mn-Hi0rmOcw,11781
|
|
264
|
+
biotite/structure/sasa.pyx,sha256=L3cpqVZBG8RbtP-JLn9R39FszvnomwozvSf6ReAiy1o,13432
|
|
265
|
+
biotite/structure/segments.py,sha256=crDed1Lv4DaCOETw8qM75LXfjLVTCtlBKKRiFdCcobY,7833
|
|
266
|
+
biotite/structure/sequence.py,sha256=RFayTEC85_ETGq0mQVX0gy3tZU6-dTQStyReVzauTqU,4355
|
|
267
|
+
biotite/structure/sse.py,sha256=Th5LBvwV6x94d1vbBdxFnKGBqaPxDkTit9qNgeFBC78,11710
|
|
268
|
+
biotite/structure/superimpose.py,sha256=8XfPyHfbU943lB4YcBZ9ZRWGXj_8ZQTc52jGQz8WcjQ,26598
|
|
269
|
+
biotite/structure/tm.py,sha256=dzLLD3GYPFsVgXgND8-fZT2Y3pp0FDA6S_Z8QJUr9S0,21548
|
|
270
|
+
biotite/structure/transform.py,sha256=NHY9enchMmEvnJzRp-CUqgWFmYMXjwda3zdniMRoQnI,20200
|
|
271
|
+
biotite/structure/util.py,sha256=7X_h7YYzwXLYc2XjFR-BQPAosNCqdZnxbbfonyO-NGA,5127
|
|
253
272
|
biotite/structure/alphabet/__init__.py,sha256=UxJZ1_WsI1SPs89ZGv4Xmr-n0pWwlQcBBglfJEXzanY,953
|
|
254
273
|
biotite/structure/alphabet/encoder.py,sha256=OMQXiMo6xnhIsWoCZ2xKvGpV28k24lM8LhL9cZDDFNE,11715
|
|
255
274
|
biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
|
|
256
|
-
biotite/structure/alphabet/i3d.py,sha256=
|
|
275
|
+
biotite/structure/alphabet/i3d.py,sha256=eq74BA_GWU3A0jC0hjPSsI1AELuOPKpoWXtmDbaoEH4,3118
|
|
257
276
|
biotite/structure/alphabet/layers.py,sha256=aOevc3a-kL65MfcFsauXt7YBAfMd5V8y5Ch534EvgEc,2173
|
|
258
277
|
biotite/structure/alphabet/pb.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
|
|
259
|
-
biotite/structure/alphabet/pb.py,sha256=
|
|
260
|
-
biotite/structure/alphabet/unkerasify.py,sha256=
|
|
278
|
+
biotite/structure/alphabet/pb.py,sha256=n9EyAgWLZ055CMFhQwc_t1xvG4KJ6lTMGwh_3H1UNvk,6164
|
|
279
|
+
biotite/structure/alphabet/unkerasify.py,sha256=YjuM8molBvuhfhGAAF5L-zo8agC2S3WLTDWMdARn_7Y,3429
|
|
261
280
|
biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
|
|
262
281
|
biotite/structure/graphics/atoms.py,sha256=acZXrWVRblk83FfLePe3pHoMcjJJH2eEDyZFmqmw-xs,8359
|
|
263
282
|
biotite/structure/graphics/rna.py,sha256=7PSX9JHfo1840k8HqKcC8UXX-rxP8YwFtN_VLgUilbE,12311
|
|
264
283
|
biotite/structure/info/__init__.py,sha256=D1ure7j8lAfbLGqQricxHLuiDHf0FLzV_p4m5rd0dPQ,722
|
|
265
284
|
biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
|
|
266
|
-
biotite/structure/info/atoms.py,sha256=
|
|
285
|
+
biotite/structure/info/atoms.py,sha256=rBmzMqUffYmKuQVVHFEz-SaaFSrsRSLFoMwa8dzYYZg,3100
|
|
267
286
|
biotite/structure/info/bonds.py,sha256=7qp4EYo61x6j7OK9Eyolh7Pmg4PU8Rodr5_KfmnyzP8,4793
|
|
268
|
-
biotite/structure/info/ccd.py,sha256=
|
|
269
|
-
biotite/structure/info/components.bcif,sha256=
|
|
270
|
-
biotite/structure/info/groups.py,sha256=
|
|
287
|
+
biotite/structure/info/ccd.py,sha256=o0Jb7YYJbYpyljfNGiqXF6bXP7IUlCY3cRMQj1EyWvg,6051
|
|
288
|
+
biotite/structure/info/components.bcif,sha256=ClKq5vYpizeAB7JSaz-ZnZ_rby7mVVn3MS5bv8muoqU,59077222
|
|
289
|
+
biotite/structure/info/groups.py,sha256=0NTOaFgvqf-yWTMNiZguVx6i0sVWXB-AhnPyhuRcK5o,3312
|
|
271
290
|
biotite/structure/info/masses.py,sha256=s8heq0bG33-6NTeRqA2WpoOqUy-mwQTfM5a7CWA0YE0,4676
|
|
272
|
-
biotite/structure/info/misc.py,sha256=
|
|
273
|
-
biotite/structure/info/radii.py,sha256=
|
|
274
|
-
biotite/structure/info/standardize.py,sha256=
|
|
291
|
+
biotite/structure/info/misc.py,sha256=_-TSbBsZ70fv3Kcwa-28LTOOZpLJZkHE23XjvysLdF4,3565
|
|
292
|
+
biotite/structure/info/radii.py,sha256=w7pL9KyLve2Z735m22Xpw2AuVm8Sg1wiU7IuE3feJYg,7548
|
|
293
|
+
biotite/structure/info/standardize.py,sha256=fI-iDut7qu8NC2Vcl-ldsfFxJMpuCZ9Uo30R8PL25mU,7924
|
|
275
294
|
biotite/structure/io/__init__.py,sha256=d9zsCIGeTRQ_R8n5xBwi5jrfanRMEeCIh9E9xjmnqVQ,1027
|
|
276
|
-
biotite/structure/io/general.py,sha256=
|
|
277
|
-
biotite/structure/io/trajfile.py,sha256=
|
|
295
|
+
biotite/structure/io/general.py,sha256=CtI0dDoHCDBXoh7FDS5isKM6AMicVBjNAlmcgu0bdN0,8695
|
|
296
|
+
biotite/structure/io/trajfile.py,sha256=kyWUz_45rX2sBqk6Ya3EolqMmu_qqsIqK2uwhwCusfQ,26093
|
|
297
|
+
biotite/structure/io/util.py,sha256=4VpPAjT0Lup3Q8DHN-Da3E9z5kJXxqmfGbfGO8AFytw,1054
|
|
278
298
|
biotite/structure/io/dcd/__init__.py,sha256=oy8P1khM60o8M5grpSoGNZkudTBrTUPF33xuLub5sNQ,401
|
|
279
299
|
biotite/structure/io/dcd/file.py,sha256=zLvngfNmF8pBM6J6kw-i_-rtFiJj1Bh4HSCAmN0EegI,2291
|
|
280
300
|
biotite/structure/io/gro/__init__.py,sha256=jPh0RWv2vbpmgB0U0lZ6yo7SkVZycYfx2UQqKWCkOHg,422
|
|
281
|
-
biotite/structure/io/gro/file.py,sha256=
|
|
301
|
+
biotite/structure/io/gro/file.py,sha256=sF1sEWg7l9AXOA9HrW0sZo6tg_I1bT-K_RSBFiU67Mw,13083
|
|
282
302
|
biotite/structure/io/mol/__init__.py,sha256=s1_xplK-Grhil2LLZiNiLU39wLvYr0LB1Vrn66BOmrU,602
|
|
283
|
-
biotite/structure/io/mol/convert.py,sha256=
|
|
284
|
-
biotite/structure/io/mol/ctab.py,sha256=
|
|
303
|
+
biotite/structure/io/mol/convert.py,sha256=grUcNFPaWd_kyJYrb2ozzbIzvNMMxyzk4ze2MLsL4zg,3901
|
|
304
|
+
biotite/structure/io/mol/ctab.py,sha256=A_qycDLi_pMLR1qjLfBNr-rAlUJT-Klv53ap7JSNUOI,14540
|
|
285
305
|
biotite/structure/io/mol/header.py,sha256=Ee78HGDy6DHQEaOh2AGyG0gQGsoMfqLPnfoCo0CwsyY,3545
|
|
286
|
-
biotite/structure/io/mol/mol.py,sha256=
|
|
287
|
-
biotite/structure/io/mol/sdf.py,sha256=
|
|
306
|
+
biotite/structure/io/mol/mol.py,sha256=Uc4gHxrVTzzRns7gou6cPQSlDeQDPUKlf1z_xvsXarU,5610
|
|
307
|
+
biotite/structure/io/mol/sdf.py,sha256=yV0ROsMsMAN0Y6rgLSri4KVsHwxoBrln4ANldqihMek,33915
|
|
288
308
|
biotite/structure/io/netcdf/__init__.py,sha256=BVUimn1EklpgdoCFE5sC-H4E47exDe_xIviMeGnn_tk,363
|
|
289
309
|
biotite/structure/io/netcdf/file.py,sha256=8jht6qCgw0Q7q1-WaQ1iCBjc1QLzjrwpppe3uBZhZ1Y,2256
|
|
290
310
|
biotite/structure/io/pdb/__init__.py,sha256=UqePAxP48oww8SEexxr6JlugRua8wgOryAvxmHd58f4,753
|
|
291
|
-
biotite/structure/io/pdb/convert.py,sha256=
|
|
292
|
-
biotite/structure/io/pdb/file.py,sha256=
|
|
311
|
+
biotite/structure/io/pdb/convert.py,sha256=AP4PPNvZ_SMjH1afal8jGzMGYyim_wTZNLbG9gOBNlo,11026
|
|
312
|
+
biotite/structure/io/pdb/file.py,sha256=V3I1kH2dFj9uiOjCxcnan5wAStGw_vLt5xFWNJziwg8,51633
|
|
293
313
|
biotite/structure/io/pdb/hybrid36.pyx,sha256=-feGX_k9H7uAfbqmy37PvlWbuij-mknpbCR2ot1l4kk,8277
|
|
294
314
|
biotite/structure/io/pdbqt/__init__.py,sha256=JiBnbhNHevtmVIwEeYBubOzK5xu1d9dSny7Zf3Aas74,456
|
|
295
315
|
biotite/structure/io/pdbqt/convert.py,sha256=M2SytCYO2ihvpcUQCqz4PD4DAKwCPxcjGbhFhJjbDZY,4121
|
|
296
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
316
|
+
biotite/structure/io/pdbqt/file.py,sha256=Jl4DiewnIGd9UeVruhTxkZaclIW94aYpMDBHB37PVtc,27326
|
|
297
317
|
biotite/structure/io/pdbx/__init__.py,sha256=0G68Qdc29KdXt0R9di2uBv4r173kuXXqGCbMtDdth0E,740
|
|
298
|
-
biotite/structure/io/pdbx/bcif.py,sha256=
|
|
299
|
-
biotite/structure/io/pdbx/cif.py,sha256=
|
|
300
|
-
biotite/structure/io/pdbx/component.py,sha256=
|
|
301
|
-
biotite/structure/io/pdbx/compress.py,sha256=
|
|
302
|
-
biotite/structure/io/pdbx/convert.py,sha256=
|
|
318
|
+
biotite/structure/io/pdbx/bcif.py,sha256=cpl55pbDDlQKWZDkTZsgMDZKWv303AvedV3-n5Y05OA,21808
|
|
319
|
+
biotite/structure/io/pdbx/cif.py,sha256=7jaC3DueZ0m738nFGYfkMkseXDiMhiBKWF0Gx_fk6AI,35956
|
|
320
|
+
biotite/structure/io/pdbx/component.py,sha256=MiVzeqTI9FHl8hbbpQkOGmlHyhtmwW4V18nQVcL-Quk,8649
|
|
321
|
+
biotite/structure/io/pdbx/compress.py,sha256=Nc42bjK3xsTrDksD3ozkGSGwFi3tUEIPpqA2ax3qNok,12121
|
|
322
|
+
biotite/structure/io/pdbx/convert.py,sha256=AJAmvC8WQIxtuoA9nNiBVz_SraGpYKGFgHmXEyPkXcU,75328
|
|
303
323
|
biotite/structure/io/pdbx/encoding.pyx,sha256=Ckb9r27HTKLrxRE93Bf-im0mu5R9tuCTh_-2o4NwMWc,32214
|
|
304
324
|
biotite/structure/io/trr/__init__.py,sha256=xp4FpuAy_ESqzVWyugRXUHZ0iF8j5ox6EfCxSWhkcUY,372
|
|
305
325
|
biotite/structure/io/trr/file.py,sha256=XcdYOf9M2tjRXMM87p9U7jMdQb0PlTFvDHXHgSdjbl8,1278
|
|
306
326
|
biotite/structure/io/xtc/__init__.py,sha256=P17UBQnG-KmOlScHp46FXAb5i7d-ZCMlyljcOkFolMw,370
|
|
307
327
|
biotite/structure/io/xtc/file.py,sha256=X4iIDjAWn1ZySg3NjbPeSMNByoyH1y8asmtqcBYycpE,1278
|
|
308
|
-
biotite/sequence/codec.cp313-win_amd64.pyd,sha256=
|
|
309
|
-
biotite/structure/bonds.cp313-win_amd64.pyd,sha256=
|
|
310
|
-
biotite/structure/celllist.cp313-win_amd64.pyd,sha256=
|
|
311
|
-
biotite/structure/charges.cp313-win_amd64.pyd,sha256=
|
|
312
|
-
biotite/structure/sasa.cp313-win_amd64.pyd,sha256=
|
|
313
|
-
biotite/sequence/align/banded.cp313-win_amd64.pyd,sha256=
|
|
314
|
-
biotite/sequence/align/kmeralphabet.cp313-win_amd64.pyd,sha256=
|
|
315
|
-
biotite/sequence/align/kmersimilarity.cp313-win_amd64.pyd,sha256=
|
|
316
|
-
biotite/sequence/align/kmertable.cp313-win_amd64.pyd,sha256=
|
|
317
|
-
biotite/sequence/align/localgapped.cp313-win_amd64.pyd,sha256=
|
|
318
|
-
biotite/sequence/align/localungapped.cp313-win_amd64.pyd,sha256=
|
|
319
|
-
biotite/sequence/align/multiple.cp313-win_amd64.pyd,sha256=
|
|
320
|
-
biotite/sequence/align/pairwise.cp313-win_amd64.pyd,sha256
|
|
321
|
-
biotite/sequence/align/permutation.cp313-win_amd64.pyd,sha256=
|
|
322
|
-
biotite/sequence/align/selector.cp313-win_amd64.pyd,sha256=
|
|
323
|
-
biotite/sequence/align/tracetable.cp313-win_amd64.pyd,sha256=
|
|
324
|
-
biotite/sequence/phylo/nj.cp313-win_amd64.pyd,sha256=
|
|
325
|
-
biotite/sequence/phylo/tree.cp313-win_amd64.pyd,sha256=
|
|
326
|
-
biotite/sequence/phylo/upgma.cp313-win_amd64.pyd,sha256=
|
|
327
|
-
biotite/structure/io/pdb/hybrid36.cp313-win_amd64.pyd,sha256=
|
|
328
|
-
biotite/structure/io/pdbx/encoding.cp313-win_amd64.pyd,sha256=
|
|
329
|
-
biotite-1.
|
|
330
|
-
biotite-1.
|
|
331
|
-
biotite-1.
|
|
332
|
-
biotite-1.
|
|
328
|
+
biotite/sequence/codec.cp313-win_amd64.pyd,sha256=toC5RVOdMEBDFTqZqrYE5VHjjakHicephaQJ-VcUDSY,253440
|
|
329
|
+
biotite/structure/bonds.cp313-win_amd64.pyd,sha256=MMz3IWT9iGCE63SC2QqbbNtyW4fLmvaSCe3atsNOOvI,481280
|
|
330
|
+
biotite/structure/celllist.cp313-win_amd64.pyd,sha256=cwSafx0ics_EgxijYVH7jTMgCf8fllVa5fZeqqPjy4g,258048
|
|
331
|
+
biotite/structure/charges.cp313-win_amd64.pyd,sha256=cPr-u4EibWKSn79EGhhNPECBpJAgOc_9hnOQox3UY9s,215040
|
|
332
|
+
biotite/structure/sasa.cp313-win_amd64.pyd,sha256=f9iD3WiHJsLbKmk2eakpuz_FU035xoPw11eO1ElPro4,194560
|
|
333
|
+
biotite/sequence/align/banded.cp313-win_amd64.pyd,sha256=yYU-zW3bvBCmUXzm4G1bNhRq3y8d5RPzijSfiEMpv8U,503808
|
|
334
|
+
biotite/sequence/align/kmeralphabet.cp313-win_amd64.pyd,sha256=hBuLyH8YZqYJY114ViHbMp7bednrPvWTyKmyKVhLj40,333312
|
|
335
|
+
biotite/sequence/align/kmersimilarity.cp313-win_amd64.pyd,sha256=jPVXkQ83ALHFua3fWAtXKIzmSXx6L81psQK8XF5K0tc,178176
|
|
336
|
+
biotite/sequence/align/kmertable.cp313-win_amd64.pyd,sha256=B0sNo8yy7zW57Z5VZ4Q7jKAaYf9LLJb8ceWTYYjWOGs,592384
|
|
337
|
+
biotite/sequence/align/localgapped.cp313-win_amd64.pyd,sha256=sJmhGq3Tj0O16HOc-rPTJDBbJksZGlnlVDFhVrxRvKU,953344
|
|
338
|
+
biotite/sequence/align/localungapped.cp313-win_amd64.pyd,sha256=SB5QuZO2qTEF4wkp3_grauyoFwXMbZQhgo_Z7pwbllU,266752
|
|
339
|
+
biotite/sequence/align/multiple.cp313-win_amd64.pyd,sha256=aW2PpYrwXYgvJV86cllEUgVIknNUOXkVVJhv_vDPpw8,413184
|
|
340
|
+
biotite/sequence/align/pairwise.cp313-win_amd64.pyd,sha256=-oPEZ5X6Fzr3l_8CMsp-W2ZNfjzGzGxsi6PQUOig6s0,548864
|
|
341
|
+
biotite/sequence/align/permutation.cp313-win_amd64.pyd,sha256=jr5FWvKBj_Nbezw8zFrrOTn1-kmYqnbif8fVJtfoMmg,186880
|
|
342
|
+
biotite/sequence/align/selector.cp313-win_amd64.pyd,sha256=BBbfxCrx13Dthx5Uurb__4USdfh_4DIylPbD2jnZcos,259072
|
|
343
|
+
biotite/sequence/align/tracetable.cp313-win_amd64.pyd,sha256=pLTDwepyl94vgAIOZEM_AbSwmZzpqvnUdkB9WW70gqc,154624
|
|
344
|
+
biotite/sequence/phylo/nj.cp313-win_amd64.pyd,sha256=z-y01betekClbQ-U3xKgBTYoYvyIBIPGk3pB09RaAqg,173568
|
|
345
|
+
biotite/sequence/phylo/tree.cp313-win_amd64.pyd,sha256=eAEDmyFYasBX_ZmWX1KonKPc5L_evaR4n7BzUHCpHEU,212992
|
|
346
|
+
biotite/sequence/phylo/upgma.cp313-win_amd64.pyd,sha256=rqFtxsazPPkkzHZYcg53ShsUkOCtM48KQbLwfo9geHw,166912
|
|
347
|
+
biotite/structure/io/pdb/hybrid36.cp313-win_amd64.pyd,sha256=Q8rwhRfjG_tgdFecDUtZTTd_0xXzwGeKT6hQmbkc3pg,156672
|
|
348
|
+
biotite/structure/io/pdbx/encoding.cp313-win_amd64.pyd,sha256=EVIlBkD16FkIVElG8sVbKvzhEb2drzVmWs2z4eGr150,963072
|
|
349
|
+
biotite-1.2.0.dist-info/METADATA,sha256=mwg-xyNoWLydJEG7E-KM3V1J3LOto8ZVlu4SZpEp1VA,7318
|
|
350
|
+
biotite-1.2.0.dist-info/WHEEL,sha256=ltsX8nxZ7_ZV1UidR3cWF27M1GiHITNfva4FdvVN66g,97
|
|
351
|
+
biotite-1.2.0.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
|
|
352
|
+
biotite-1.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|