biotite 1.0.1__cp311-cp311-win_amd64.whl → 1.2.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/application/application.py +3 -3
- biotite/application/autodock/app.py +1 -1
- biotite/application/blast/webapp.py +1 -1
- biotite/application/clustalo/app.py +1 -1
- biotite/application/dssp/app.py +13 -3
- biotite/application/localapp.py +36 -2
- biotite/application/msaapp.py +10 -10
- biotite/application/muscle/app3.py +5 -18
- biotite/application/muscle/app5.py +5 -5
- biotite/application/sra/app.py +0 -5
- biotite/application/util.py +22 -2
- biotite/application/viennarna/rnaalifold.py +8 -8
- biotite/application/viennarna/rnaplot.py +9 -3
- biotite/application/viennarna/util.py +1 -1
- biotite/application/webapp.py +1 -1
- biotite/database/afdb/__init__.py +12 -0
- biotite/database/afdb/download.py +191 -0
- biotite/database/entrez/dbnames.py +10 -0
- biotite/database/entrez/download.py +9 -10
- biotite/database/entrez/key.py +1 -1
- biotite/database/entrez/query.py +5 -4
- biotite/database/pubchem/download.py +6 -6
- biotite/database/pubchem/error.py +10 -0
- biotite/database/pubchem/query.py +12 -23
- biotite/database/rcsb/download.py +3 -2
- biotite/database/rcsb/query.py +8 -9
- biotite/database/uniprot/check.py +22 -17
- biotite/database/uniprot/download.py +3 -6
- biotite/database/uniprot/query.py +4 -5
- biotite/file.py +14 -2
- biotite/interface/__init__.py +19 -0
- biotite/interface/openmm/__init__.py +16 -0
- biotite/interface/openmm/state.py +93 -0
- biotite/interface/openmm/system.py +227 -0
- biotite/interface/pymol/__init__.py +198 -0
- biotite/interface/pymol/cgo.py +346 -0
- biotite/interface/pymol/convert.py +185 -0
- biotite/interface/pymol/display.py +267 -0
- biotite/interface/pymol/object.py +1226 -0
- biotite/interface/pymol/shapes.py +178 -0
- biotite/interface/pymol/startup.py +169 -0
- biotite/interface/rdkit/__init__.py +15 -0
- biotite/interface/rdkit/mol.py +490 -0
- biotite/interface/version.py +71 -0
- biotite/interface/warning.py +19 -0
- biotite/sequence/align/__init__.py +0 -4
- biotite/sequence/align/alignment.py +49 -14
- biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/banded.pyx +26 -26
- biotite/sequence/align/cigar.py +2 -2
- biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.pyx +19 -2
- biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.pyx +58 -48
- biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/localgapped.pyx +47 -47
- biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.pyx +10 -10
- biotite/sequence/align/matrix.py +284 -57
- biotite/sequence/align/matrix_data/3Di.mat +24 -0
- biotite/sequence/align/matrix_data/PB.license +21 -0
- biotite/sequence/align/matrix_data/PB.mat +18 -0
- biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.pyx +35 -35
- biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.pyx +2 -2
- biotite/sequence/align/statistics.py +1 -1
- biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/alphabet.py +5 -2
- biotite/sequence/annotation.py +19 -13
- biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
- biotite/sequence/codon.py +1 -2
- biotite/sequence/graphics/alignment.py +25 -39
- biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
- biotite/sequence/graphics/color_schemes/pb_flower.json +2 -1
- biotite/sequence/graphics/colorschemes.py +44 -11
- biotite/sequence/graphics/dendrogram.py +4 -2
- biotite/sequence/graphics/features.py +2 -2
- biotite/sequence/graphics/logo.py +10 -12
- biotite/sequence/io/fasta/convert.py +1 -2
- biotite/sequence/io/fasta/file.py +1 -1
- biotite/sequence/io/fastq/file.py +3 -3
- biotite/sequence/io/genbank/file.py +3 -3
- biotite/sequence/io/genbank/sequence.py +2 -0
- biotite/sequence/io/gff/convert.py +1 -1
- biotite/sequence/io/gff/file.py +1 -2
- biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
- biotite/sequence/profile.py +105 -29
- biotite/sequence/search.py +0 -1
- biotite/sequence/seqtypes.py +136 -8
- biotite/sequence/sequence.py +1 -2
- biotite/setup_ccd.py +197 -0
- biotite/structure/__init__.py +6 -3
- biotite/structure/alphabet/__init__.py +25 -0
- biotite/structure/alphabet/encoder.py +332 -0
- biotite/structure/alphabet/encoder_weights_3di.kerasify +0 -0
- biotite/structure/alphabet/i3d.py +109 -0
- biotite/structure/alphabet/layers.py +86 -0
- biotite/structure/alphabet/pb.license +21 -0
- biotite/structure/alphabet/pb.py +170 -0
- biotite/structure/alphabet/unkerasify.py +128 -0
- biotite/structure/atoms.py +163 -66
- biotite/structure/basepairs.py +26 -26
- biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
- biotite/structure/bonds.pyx +79 -25
- biotite/structure/box.py +19 -21
- biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
- biotite/structure/celllist.pyx +83 -67
- biotite/structure/chains.py +5 -37
- biotite/structure/charges.cp311-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 +74 -127
- biotite/structure/hbond.py +17 -19
- biotite/structure/info/__init__.py +1 -0
- biotite/structure/info/atoms.py +24 -15
- biotite/structure/info/bonds.py +12 -6
- biotite/structure/info/ccd.py +125 -34
- biotite/structure/info/{ccd/components.bcif → components.bcif} +0 -0
- biotite/structure/info/groups.py +62 -19
- biotite/structure/info/masses.py +9 -6
- biotite/structure/info/misc.py +15 -22
- biotite/structure/info/radii.py +92 -22
- biotite/structure/info/standardize.py +4 -4
- biotite/structure/integrity.py +4 -6
- biotite/structure/io/general.py +2 -2
- biotite/structure/io/gro/file.py +8 -9
- biotite/structure/io/mol/convert.py +1 -1
- biotite/structure/io/mol/ctab.py +33 -28
- biotite/structure/io/mol/mol.py +1 -1
- biotite/structure/io/mol/sdf.py +80 -53
- biotite/structure/io/pdb/convert.py +4 -3
- biotite/structure/io/pdb/file.py +85 -25
- biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/pdbqt/file.py +36 -36
- biotite/structure/io/pdbx/__init__.py +1 -0
- biotite/structure/io/pdbx/bcif.py +54 -15
- biotite/structure/io/pdbx/cif.py +92 -66
- biotite/structure/io/pdbx/component.py +15 -4
- biotite/structure/io/pdbx/compress.py +321 -0
- biotite/structure/io/pdbx/convert.py +410 -75
- biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/encoding.pyx +98 -17
- biotite/structure/io/trajfile.py +9 -6
- biotite/structure/io/util.py +38 -0
- biotite/structure/mechanics.py +0 -1
- biotite/structure/molecules.py +141 -156
- biotite/structure/pseudoknots.py +7 -13
- biotite/structure/repair.py +2 -4
- biotite/structure/residues.py +13 -24
- biotite/structure/rings.py +335 -0
- biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
- biotite/structure/sasa.pyx +2 -1
- biotite/structure/segments.py +69 -11
- biotite/structure/sequence.py +0 -1
- biotite/structure/sse.py +0 -2
- biotite/structure/superimpose.py +74 -62
- biotite/structure/tm.py +581 -0
- biotite/structure/transform.py +12 -25
- biotite/structure/util.py +76 -4
- biotite/version.py +9 -4
- biotite/visualize.py +111 -1
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/METADATA +6 -2
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/RECORD +173 -143
- biotite/structure/info/ccd/README.rst +0 -8
- biotite/structure/info/ccd/amino_acids.txt +0 -1663
- biotite/structure/info/ccd/carbohydrates.txt +0 -1135
- biotite/structure/info/ccd/nucleotides.txt +0 -798
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/WHEEL +0 -0
- {biotite-1.0.1.dist-info → biotite-1.2.0.dist-info}/licenses/LICENSE.rst +0 -0
|
@@ -1,86 +1,105 @@
|
|
|
1
1
|
biotite/__init__.py,sha256=gzqOy5P7Zf667uYuUwqjLLW0GiBdqc23NLcZaXMuHKw,563
|
|
2
2
|
biotite/copyable.py,sha256=Qnja44k58dAc3WkIUM0svqrbvqO9pSV-Atr9MUJSoCI,1968
|
|
3
|
-
biotite/file.py,sha256=
|
|
4
|
-
biotite/
|
|
5
|
-
biotite/
|
|
3
|
+
biotite/file.py,sha256=ktpRUk0OH5_wKIJHtCX3zDjXeJ3eQ4ycDjpp7HttUYM,6977
|
|
4
|
+
biotite/setup_ccd.py,sha256=9StRz4qPVdTJNrPUoA_liwvkKnTb8O0U8PDxt1tDVwc,6248
|
|
5
|
+
biotite/version.py,sha256=bkKCVnDOy6zWTEO3tQhqGU5jAs0SW1QnX5UfCnuEW3U,532
|
|
6
|
+
biotite/visualize.py,sha256=z4lBfJAt5YxGqtgxgcLHKMwVcE4u6fqExEyrOHcSiaY,14330
|
|
6
7
|
biotite/application/__init__.py,sha256=Rei3EwlpCnC_cJNQoTJYY_Gw_qLdsqgnRxV5b1slHJU,3148
|
|
7
|
-
biotite/application/application.py,sha256=
|
|
8
|
-
biotite/application/localapp.py,sha256=
|
|
9
|
-
biotite/application/msaapp.py,sha256=
|
|
10
|
-
biotite/application/util.py,sha256=
|
|
11
|
-
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
|
|
12
13
|
biotite/application/autodock/__init__.py,sha256=QtcZDgjFXYaHYSoVtnx8Bs2YA9TvwCg0fSkMfrxKK3k,327
|
|
13
|
-
biotite/application/autodock/app.py,sha256=
|
|
14
|
+
biotite/application/autodock/app.py,sha256=30-FGdjutoj5pHCxiedZywrzeFRm0Fv45eVpFaO84YU,19192
|
|
14
15
|
biotite/application/blast/__init__.py,sha256=90FNcYrxTkEGlzf8RSR1uQkSp4BF42S99XK6FXnmUY4,380
|
|
15
16
|
biotite/application/blast/alignment.py,sha256=aPbMz_qyH8Izl_g24BQKgvh6McYXyx0tPsGcocwQ4E8,3209
|
|
16
|
-
biotite/application/blast/webapp.py,sha256=
|
|
17
|
+
biotite/application/blast/webapp.py,sha256=7-r_Jw7gHysUb8Zjsv5mc0WyFdbWblamqVXYq2He0-A,14875
|
|
17
18
|
biotite/application/clustalo/__init__.py,sha256=UtEQiS9nDZF9-Sup3kbi06mTjv6YRD9Qbu5A722bNlY,338
|
|
18
|
-
biotite/application/clustalo/app.py,sha256=
|
|
19
|
+
biotite/application/clustalo/app.py,sha256=hBnmdh2nhA1ipxz4OzVZ52UMyA0hqxf_MAej3bygbWU,7637
|
|
19
20
|
biotite/application/dssp/__init__.py,sha256=smuKF9_8g5xzY-MFjYXTYa3wbTfQD4g6L3TDCfMTr8w,335
|
|
20
|
-
biotite/application/dssp/app.py,sha256=
|
|
21
|
+
biotite/application/dssp/app.py,sha256=ZBgW5R5Y1nt1D69imUpc_79-XPm9N3yqfdZKxgVc8-M,5482
|
|
21
22
|
biotite/application/mafft/__init__.py,sha256=urPUmmuKAsB9DQeEeaj8EDt3uL0UjgBSo76H2HnLsLs,327
|
|
22
23
|
biotite/application/mafft/app.py,sha256=W_iWXuaO0CaCFpnTyawlmQ1P0wt9pnGnwr-AzAudLM0,3397
|
|
23
24
|
biotite/application/muscle/__init__.py,sha256=26qqctlXpZqoFBD1K_y_Zv7QZfDdMHOodGAXW20r42Q,351
|
|
24
|
-
biotite/application/muscle/app3.py,sha256=
|
|
25
|
-
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
|
|
26
27
|
biotite/application/sra/__init__.py,sha256=GwfAKbOfTTYaLVdTwdkJxCMCY-SUd7WsN7BDAU2Xq7A,571
|
|
27
|
-
biotite/application/sra/app.py,sha256=
|
|
28
|
+
biotite/application/sra/app.py,sha256=usJZ5uZ0durKYIBF58KauxBkwBtvDAG-iX_I4IBCRgY,16021
|
|
28
29
|
biotite/application/tantan/__init__.py,sha256=XivhGt3vpQ7EvRKdxT_jQNXIPnvVxAUXCnHYZkSuiHY,340
|
|
29
30
|
biotite/application/tantan/app.py,sha256=nWE3rlDqf3-jfpIXUw1ddH4ooiD2lZ1GeqBvGXEXtsI,7637
|
|
30
31
|
biotite/application/viennarna/__init__.py,sha256=HlvHvgsTdzTbq3e9luAmMP-4DbkiBqx5ru69swdz4ns,491
|
|
31
|
-
biotite/application/viennarna/rnaalifold.py,sha256=
|
|
32
|
+
biotite/application/viennarna/rnaalifold.py,sha256=16arcCP55XC8OXNLkSLPNrMrHuU7b5VLyz0xqO_MDhI,10993
|
|
32
33
|
biotite/application/viennarna/rnafold.py,sha256=skqZzqE-otS6uL38isGpikLUbwf8srsOQirINB6qi-8,8164
|
|
33
|
-
biotite/application/viennarna/rnaplot.py,sha256=
|
|
34
|
-
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
|
|
35
36
|
biotite/database/__init__.py,sha256=N3PuLKuEbQ0J55CddwryBGiLfYSazC697F8KnxizrKY,748
|
|
36
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
|
|
37
40
|
biotite/database/entrez/__init__.py,sha256=88kXhS1XqXb4exnfZIaKD98t3RH3gEZBiNR-aBhl-OE,403
|
|
38
41
|
biotite/database/entrez/check.py,sha256=3JQZshjekA1woJll6UefEsUZ8kMw-MG1uh86jGgDomQ,1913
|
|
39
|
-
biotite/database/entrez/dbnames.py,sha256=
|
|
40
|
-
biotite/database/entrez/download.py,sha256=
|
|
41
|
-
biotite/database/entrez/key.py,sha256=
|
|
42
|
-
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
|
|
43
46
|
biotite/database/pubchem/__init__.py,sha256=YvB4_HXgHto_Jw6PdsSNea-sFoh0HtEUWD7ByyxH2Xg,690
|
|
44
|
-
biotite/database/pubchem/download.py,sha256=
|
|
45
|
-
biotite/database/pubchem/error.py,sha256=
|
|
46
|
-
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
|
|
47
50
|
biotite/database/pubchem/throttle.py,sha256=V4RzypMfh1IaBC8yZrH1l8W1k7v2KLpj1_fK94k-__w,3384
|
|
48
51
|
biotite/database/rcsb/__init__.py,sha256=BKYOAhSIX1zb00wp_6bw30M7XGliu64B35Dm2Gf-A14,345
|
|
49
|
-
biotite/database/rcsb/download.py,sha256=
|
|
50
|
-
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
|
|
51
54
|
biotite/database/uniprot/__init__.py,sha256=0U1mt1nphhPZomlauOeMEVDfFx-6Npyi2eGsf6ztH6E,347
|
|
52
|
-
biotite/database/uniprot/check.py,sha256=
|
|
53
|
-
biotite/database/uniprot/download.py,sha256=
|
|
54
|
-
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
|
|
55
73
|
biotite/sequence/__init__.py,sha256=fUoOYLTavBTicHu-JCQkvrCAyRfKRspfCItufOBDGGE,3507
|
|
56
|
-
biotite/sequence/alphabet.py,sha256=
|
|
57
|
-
biotite/sequence/annotation.py,sha256=
|
|
74
|
+
biotite/sequence/alphabet.py,sha256=rI3KC_U05_gdLdXypGDicmJWvU2ruISMlCxr-NGPi0E,17782
|
|
75
|
+
biotite/sequence/annotation.py,sha256=XeVjiagSR5aVIRywAIl927Iwdgni4VKj7SyQJjP9Wkw,30541
|
|
58
76
|
biotite/sequence/codec.pyx,sha256=JIKPODmlk7RGW1GIhoUSrbfS1XRJa6vbOb5ur-62jIc,5116
|
|
59
|
-
biotite/sequence/codon.py,sha256=
|
|
77
|
+
biotite/sequence/codon.py,sha256=zXGEitMgOomhems28nQtydwR3NH-3lxmCOYAGDKgITQ,16822
|
|
60
78
|
biotite/sequence/codon_tables.txt,sha256=knCf-Q8tZToxEr7s4nM9xuq_5BlhL_IYEyNh9rfwWEQ,10411
|
|
61
|
-
biotite/sequence/profile.py,sha256=
|
|
62
|
-
biotite/sequence/search.py,sha256=
|
|
63
|
-
biotite/sequence/seqtypes.py,sha256=
|
|
64
|
-
biotite/sequence/sequence.py,sha256=
|
|
65
|
-
biotite/sequence/align/__init__.py,sha256=
|
|
66
|
-
biotite/sequence/align/alignment.py,sha256=
|
|
67
|
-
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
|
|
68
86
|
biotite/sequence/align/buckets.py,sha256=3QLzBDorc0ZYJv2SNuRn-mWmT3I2XljfCD1AoNV3ldw,2535
|
|
69
|
-
biotite/sequence/align/cigar.py,sha256=
|
|
70
|
-
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
|
|
71
89
|
biotite/sequence/align/kmersimilarity.pyx,sha256=tmAKKZY2JOvnPjU0PQqInvb_MRo7whUxgX0iVZNWIbg,8665
|
|
72
|
-
biotite/sequence/align/kmertable.pyx,sha256=
|
|
73
|
-
biotite/sequence/align/localgapped.pyx,sha256=
|
|
74
|
-
biotite/sequence/align/localungapped.pyx,sha256=
|
|
75
|
-
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
|
|
76
94
|
biotite/sequence/align/multiple.pyx,sha256=J9MLWqzSvJN-1eWsjCPGlCdr51cSYkkiwyjyyE46qFo,22585
|
|
77
|
-
biotite/sequence/align/pairwise.pyx,sha256=
|
|
95
|
+
biotite/sequence/align/pairwise.pyx,sha256=ekSxD8zMK8lbSZGAxZAPe_bo339Me6ON4lTvzM-jn9I,23266
|
|
78
96
|
biotite/sequence/align/permutation.pyx,sha256=G9quD4yyP_5BCgVkJE_Xf_9wovn1Bg_MXPtltopaUYw,10340
|
|
79
97
|
biotite/sequence/align/primes.txt,sha256=XcNX2_hYQI4H-8MPvZH1oiYeQ1lfxU8rBvuwMlcQa3Y,10961
|
|
80
|
-
biotite/sequence/align/selector.pyx,sha256=
|
|
81
|
-
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
|
|
82
100
|
biotite/sequence/align/tracetable.pxd,sha256=JhxS9sl5wV6HD_cJMXaBt1zm_4_y5twsBs5buMVDYI0,2888
|
|
83
101
|
biotite/sequence/align/tracetable.pyx,sha256=ReX5kId42RQqlMZmNRpzMmF3_9Z4laL8dXK88IiW-6c,15824
|
|
102
|
+
biotite/sequence/align/matrix_data/3Di.mat,sha256=-vJKsfx0GvUTWQLn6E4iQqAb17886onYD5277vE0DSc,2044
|
|
84
103
|
biotite/sequence/align/matrix_data/BLOSUM100.mat,sha256=W-q25YSvx6Eh_OMpjlHAxHS1CN2n8pfKvxVzTYeE-ck,2205
|
|
85
104
|
biotite/sequence/align/matrix_data/BLOSUM30.mat,sha256=s5AR5BjhXVly2A900JiriOodp2I5tv95wqw87TUAyOk,2153
|
|
86
105
|
biotite/sequence/align/matrix_data/BLOSUM35.mat,sha256=0PksmPiSphINnKFWBh1jQieLg0F5bIISIwZVwS7trFc,2153
|
|
@@ -164,6 +183,8 @@ biotite/sequence/align/matrix_data/PAM60.mat,sha256=tEP5rtSKfgJt14UAQd1dhHO4BDBz
|
|
|
164
183
|
biotite/sequence/align/matrix_data/PAM70.mat,sha256=hYpO31Doaim0281R8CSaLuN3ufFslxH4sho8ErMpqx4,2700
|
|
165
184
|
biotite/sequence/align/matrix_data/PAM80.mat,sha256=Q6B4P1vT9zLD4zXWpuBUrRfPgmjTLTOcF_yMnKeDgWI,2700
|
|
166
185
|
biotite/sequence/align/matrix_data/PAM90.mat,sha256=kB9YeLnQcIJwSRrIm3Ds961BH44ZTPVFjPZ2ZoJjhXQ,2700
|
|
186
|
+
biotite/sequence/align/matrix_data/PB.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
|
|
187
|
+
biotite/sequence/align/matrix_data/PB.mat,sha256=uzRYqr9cWWM9aJYyT7n2ZDWRcWLCXTJSj4UvDviB0zI,1711
|
|
167
188
|
biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat,sha256=x9VzlyYY5EZ8xei0rnQ2ytuG6EGS-hUTxk7h1MSAyII,1875
|
|
168
189
|
biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat,sha256=t2RTYBWH7pD2mr8OGH7KGu8DIs14TI3SDh_OF75YQyM,1875
|
|
169
190
|
biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat,sha256=ppkCtdb5MiZFF4JNokg3X1gf1mDN4qGV0C_dCHcbsbs,1875
|
|
@@ -171,12 +192,13 @@ biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat,sha256=E52mnslKgzhNeB6n3LNT
|
|
|
171
192
|
biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat,sha256=xABdTJkFD8zQKcmyvnt6jL3saEP0o9CF7EcP3KM9aU8,1875
|
|
172
193
|
biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat,sha256=FzdtLvS9xnAvNH_xCZ9P1ydCHCMaFeYC6VkqA844x5Y,1875
|
|
173
194
|
biotite/sequence/graphics/__init__.py,sha256=nQMB_4upyPX-9_f6rThY9-KSRkGtBi_WRxMc92v2A6I,1185
|
|
174
|
-
biotite/sequence/graphics/alignment.py,sha256=
|
|
175
|
-
biotite/sequence/graphics/colorschemes.py,sha256=
|
|
176
|
-
biotite/sequence/graphics/dendrogram.py,sha256=
|
|
177
|
-
biotite/sequence/graphics/features.py,sha256=
|
|
178
|
-
biotite/sequence/graphics/logo.py,sha256=
|
|
195
|
+
biotite/sequence/graphics/alignment.py,sha256=G4OTCmF48Z7qmqaSMGl_v4BmlDnB1y4os3B8BLd2Cts,40469
|
|
196
|
+
biotite/sequence/graphics/colorschemes.py,sha256=ISSJvX0c840TJEhnjH-Y57jo8LhHCuaU3DTFNu3nxWI,5687
|
|
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
|
|
179
200
|
biotite/sequence/graphics/plasmid.py,sha256=9SZItKWdLSCdTbolBsWDPyVDb-75aYGtTsPKH_9ywio,26714
|
|
201
|
+
biotite/sequence/graphics/color_schemes/3di_flower.json,sha256=O5CIZo3B4kA6ItoEAFCcCwvkFlz5-9GH4fRH-Hh6Ugc,964
|
|
180
202
|
biotite/sequence/graphics/color_schemes/autumn.json,sha256=ykykAiaOGDBaBLXwtjqVBRYmce-8uK4NgtwHgnkLfio,893
|
|
181
203
|
biotite/sequence/graphics/color_schemes/blossom.json,sha256=puHv-OkH37s_6kPSM_Uq6wnbnHdGu08Mdq-QxNu2fv0,894
|
|
182
204
|
biotite/sequence/graphics/color_schemes/clustalx_dna.json,sha256=54lrQvggpxSKGTy4n-yOvFrTwGxucJeo2ruzrghXfSk,259
|
|
@@ -190,7 +212,7 @@ biotite/sequence/graphics/color_schemes/jalview_prop_turn.json,sha256=Iw3f9dAmt9
|
|
|
190
212
|
biotite/sequence/graphics/color_schemes/jalview_taylor.json,sha256=EIjhkViMxbIE67_YUGTi-JYv55bLLGVr9Y5ah_J4cug,729
|
|
191
213
|
biotite/sequence/graphics/color_schemes/jalview_zappo.json,sha256=jzg12_f-7cmxtVKwgqNZCj1NxSKjKCUG2tZdc7ihvqA,728
|
|
192
214
|
biotite/sequence/graphics/color_schemes/ocean.json,sha256=hfQeJFs90GA4q85Is6kE6NROqctuQY_N8TvfbD1FvAU,892
|
|
193
|
-
biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=
|
|
215
|
+
biotite/sequence/graphics/color_schemes/pb_flower.json,sha256=0OhKObhab7Oyj8ChVEGdOPz9FshhhPuakwUV5f5mS_4,716
|
|
194
216
|
biotite/sequence/graphics/color_schemes/rainbow_dna.json,sha256=Lw_My4qOSFPRCpiEJWZQU4kUvy30mXx_-YS_gcIWqiU,258
|
|
195
217
|
biotite/sequence/graphics/color_schemes/rainbow_protein.json,sha256=Ulm9UqjT_klqIz93g54qz5VxlKDJNSLi4ywpyElfCzU,782
|
|
196
218
|
biotite/sequence/graphics/color_schemes/spring.json,sha256=Yw49LbAU_TFE_L_mt4wocoiVUHpZEMjrAZi2pWUuR5s,893
|
|
@@ -199,124 +221,132 @@ biotite/sequence/graphics/color_schemes/wither.json,sha256=SawwzITBHvhS4XYf6CkND
|
|
|
199
221
|
biotite/sequence/io/__init__.py,sha256=MbsrDuoq0Cxd77d9m0ueUvI0lsftNt5EibJIYUo6a0M,326
|
|
200
222
|
biotite/sequence/io/general.py,sha256=7JQBPcp0gVblaGUwYW05dYreyOG9J5LFUz-v6XGGX-k,6895
|
|
201
223
|
biotite/sequence/io/fasta/__init__.py,sha256=6aXOhuGVn4FJoJMop3HedLQ6IRrZiuEOWCrC-sGtu28,742
|
|
202
|
-
biotite/sequence/io/fasta/convert.py,sha256=
|
|
203
|
-
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
|
|
204
226
|
biotite/sequence/io/fastq/__init__.py,sha256=p3dmgI_ytFxai_tdrqpRhkTUzBkQMM5J2cNQ1p9-JXI,607
|
|
205
227
|
biotite/sequence/io/fastq/convert.py,sha256=BKZ3_wHFeynAfDLNKDctI2Amfl5-F0wNyV6qv_uctMs,3749
|
|
206
|
-
biotite/sequence/io/fastq/file.py,sha256=
|
|
228
|
+
biotite/sequence/io/fastq/file.py,sha256=Ub_a3jhtjnHztN35_eAK7KQpM2xaG4vtZKam5JAx5gI,18324
|
|
207
229
|
biotite/sequence/io/genbank/__init__.py,sha256=DVTqOI2ilzlo2O-IyfUv-7WxsxVIBPPtoEjZ1MNV3Pk,490
|
|
208
230
|
biotite/sequence/io/genbank/annotation.py,sha256=J8_DODOqNcPvj_le5md3-9nttlNV3ViXCNtGAdNtSBk,9700
|
|
209
|
-
biotite/sequence/io/genbank/file.py,sha256=
|
|
231
|
+
biotite/sequence/io/genbank/file.py,sha256=lT3S853nNLUUlxQdkvvNADJa-wJ_5QIgHYZmSF6f0BM,20927
|
|
210
232
|
biotite/sequence/io/genbank/metadata.py,sha256=bF3fttJMmFa6eELvQ9UqzFVSgGkVUqLfVsgiLz01LBA,9687
|
|
211
|
-
biotite/sequence/io/genbank/sequence.py,sha256=
|
|
233
|
+
biotite/sequence/io/genbank/sequence.py,sha256=_y-IcIad0EYUYovy9hcCt8DzKfoboxBPJXE5Nhw72yA,5677
|
|
212
234
|
biotite/sequence/io/gff/__init__.py,sha256=-m--LdBhi8sDWD0mbjxoxU_hRPSeJ7APYCYFKkpb448,949
|
|
213
|
-
biotite/sequence/io/gff/convert.py,sha256=
|
|
214
|
-
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
|
|
215
237
|
biotite/sequence/phylo/__init__.py,sha256=aNP1B9DNNTXMyiqWkzF6JZFynlcmIg-bDeN-eDKakgQ,1297
|
|
216
238
|
biotite/sequence/phylo/nj.pyx,sha256=YOseJP7fKCnqhh8w3mK1z3fw6cKF5sU5oRkb1D3X9vI,7501
|
|
217
239
|
biotite/sequence/phylo/tree.pyx,sha256=kmT2kO9cH3svQOxsyuPLfbUsWnTNdfVrx5xaxcmTC3I,40374
|
|
218
240
|
biotite/sequence/phylo/upgma.pyx,sha256=llgc-9fEOU-D1a-ESMSIAoPjHvsd_L0-GnwkL-uzWNc,5376
|
|
219
|
-
biotite/structure/__init__.py,sha256=
|
|
220
|
-
biotite/structure/atoms.py,sha256=
|
|
221
|
-
biotite/structure/basepairs.py,sha256
|
|
222
|
-
biotite/structure/bonds.pyx,sha256=
|
|
223
|
-
biotite/structure/box.py,sha256=
|
|
224
|
-
biotite/structure/celllist.pyx,sha256=
|
|
225
|
-
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
|
|
226
248
|
biotite/structure/charges.pyx,sha256=ZqQeMaSr0kjgBWRN_mYWBXV6wYtglADRrvY4ZQ0KKSU,19341
|
|
227
|
-
biotite/structure/compare.py,sha256=
|
|
228
|
-
biotite/structure/density.py,sha256=
|
|
229
|
-
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
|
|
230
252
|
biotite/structure/error.py,sha256=NaQBi7CGUYpa7-Y9t0We8iVEJwqpsNWLXkr1PTBKlxQ,822
|
|
231
|
-
biotite/structure/filter.py,sha256=
|
|
232
|
-
biotite/structure/geometry.py,sha256=
|
|
233
|
-
biotite/structure/hbond.py,sha256=
|
|
234
|
-
biotite/structure/integrity.py,sha256=
|
|
235
|
-
biotite/structure/mechanics.py,sha256=
|
|
236
|
-
biotite/structure/molecules.py,sha256=
|
|
237
|
-
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
|
|
238
260
|
biotite/structure/rdf.py,sha256=XAkbnbfk0wx_cIlrDYXBMUzzShgICUCpyPPfTNviWBQ,8349
|
|
239
|
-
biotite/structure/repair.py,sha256=
|
|
240
|
-
biotite/structure/residues.py,sha256=
|
|
241
|
-
biotite/structure/
|
|
242
|
-
biotite/structure/
|
|
243
|
-
biotite/structure/
|
|
244
|
-
biotite/structure/
|
|
245
|
-
biotite/structure/
|
|
246
|
-
biotite/structure/
|
|
247
|
-
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
|
|
272
|
+
biotite/structure/alphabet/__init__.py,sha256=UxJZ1_WsI1SPs89ZGv4Xmr-n0pWwlQcBBglfJEXzanY,953
|
|
273
|
+
biotite/structure/alphabet/encoder.py,sha256=OMQXiMo6xnhIsWoCZ2xKvGpV28k24lM8LhL9cZDDFNE,11715
|
|
274
|
+
biotite/structure/alphabet/encoder_weights_3di.kerasify,sha256=m4JF4oVWBbiu6r8DM9ONQ5Bmcbqwr5dxKfqYThOmHpk,1032
|
|
275
|
+
biotite/structure/alphabet/i3d.py,sha256=eq74BA_GWU3A0jC0hjPSsI1AELuOPKpoWXtmDbaoEH4,3118
|
|
276
|
+
biotite/structure/alphabet/layers.py,sha256=aOevc3a-kL65MfcFsauXt7YBAfMd5V8y5Ch534EvgEc,2173
|
|
277
|
+
biotite/structure/alphabet/pb.license,sha256=rRrKDQMPavU4XuIApytyQgVJLESA4rij074TO2sNijs,1111
|
|
278
|
+
biotite/structure/alphabet/pb.py,sha256=n9EyAgWLZ055CMFhQwc_t1xvG4KJ6lTMGwh_3H1UNvk,6164
|
|
279
|
+
biotite/structure/alphabet/unkerasify.py,sha256=YjuM8molBvuhfhGAAF5L-zo8agC2S3WLTDWMdARn_7Y,3429
|
|
248
280
|
biotite/structure/graphics/__init__.py,sha256=crwq14wVv4ttDEecmExvEyh5Z1LCafb3wznZWB7HOhA,366
|
|
249
281
|
biotite/structure/graphics/atoms.py,sha256=acZXrWVRblk83FfLePe3pHoMcjJJH2eEDyZFmqmw-xs,8359
|
|
250
282
|
biotite/structure/graphics/rna.py,sha256=7PSX9JHfo1840k8HqKcC8UXX-rxP8YwFtN_VLgUilbE,12311
|
|
251
|
-
biotite/structure/info/__init__.py,sha256=
|
|
283
|
+
biotite/structure/info/__init__.py,sha256=D1ure7j8lAfbLGqQricxHLuiDHf0FLzV_p4m5rd0dPQ,722
|
|
252
284
|
biotite/structure/info/atom_masses.json,sha256=DJ2YMCN4Fvn0zzT91N6TotoLMPm_EkeOF23Yjb5mvGg,2504
|
|
253
|
-
biotite/structure/info/atoms.py,sha256=
|
|
254
|
-
biotite/structure/info/bonds.py,sha256=
|
|
255
|
-
biotite/structure/info/ccd.py,sha256=
|
|
256
|
-
biotite/structure/info/
|
|
257
|
-
biotite/structure/info/
|
|
258
|
-
biotite/structure/info/
|
|
259
|
-
biotite/structure/info/
|
|
260
|
-
biotite/structure/info/
|
|
261
|
-
biotite/structure/info/
|
|
262
|
-
biotite/structure/info/ccd/amino_acids.txt,sha256=l1yE8BcddZ8aJtMhDr0wfn_zRHy-am39xuMm80DIsuA,8332
|
|
263
|
-
biotite/structure/info/ccd/carbohydrates.txt,sha256=R6WD5xRqmmiYAQp6QrdtlSBF6IBVC4BeMPPl5keEMeA,5679
|
|
264
|
-
biotite/structure/info/ccd/components.bcif,sha256=xgvErxils9GNg5s0sGI33B7w4lWeUBZRksPer3japnE,35649254
|
|
265
|
-
biotite/structure/info/ccd/nucleotides.txt,sha256=rVTN65IGs1rfwDzjdhiaIZQ3mCGg3WvllNPSUWCBsoY,3934
|
|
285
|
+
biotite/structure/info/atoms.py,sha256=rBmzMqUffYmKuQVVHFEz-SaaFSrsRSLFoMwa8dzYYZg,3100
|
|
286
|
+
biotite/structure/info/bonds.py,sha256=7qp4EYo61x6j7OK9Eyolh7Pmg4PU8Rodr5_KfmnyzP8,4793
|
|
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
|
|
290
|
+
biotite/structure/info/masses.py,sha256=s8heq0bG33-6NTeRqA2WpoOqUy-mwQTfM5a7CWA0YE0,4676
|
|
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
|
|
266
294
|
biotite/structure/io/__init__.py,sha256=d9zsCIGeTRQ_R8n5xBwi5jrfanRMEeCIh9E9xjmnqVQ,1027
|
|
267
|
-
biotite/structure/io/general.py,sha256=
|
|
268
|
-
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
|
|
269
298
|
biotite/structure/io/dcd/__init__.py,sha256=oy8P1khM60o8M5grpSoGNZkudTBrTUPF33xuLub5sNQ,401
|
|
270
299
|
biotite/structure/io/dcd/file.py,sha256=zLvngfNmF8pBM6J6kw-i_-rtFiJj1Bh4HSCAmN0EegI,2291
|
|
271
300
|
biotite/structure/io/gro/__init__.py,sha256=jPh0RWv2vbpmgB0U0lZ6yo7SkVZycYfx2UQqKWCkOHg,422
|
|
272
|
-
biotite/structure/io/gro/file.py,sha256=
|
|
301
|
+
biotite/structure/io/gro/file.py,sha256=sF1sEWg7l9AXOA9HrW0sZo6tg_I1bT-K_RSBFiU67Mw,13083
|
|
273
302
|
biotite/structure/io/mol/__init__.py,sha256=s1_xplK-Grhil2LLZiNiLU39wLvYr0LB1Vrn66BOmrU,602
|
|
274
|
-
biotite/structure/io/mol/convert.py,sha256=
|
|
275
|
-
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
|
|
276
305
|
biotite/structure/io/mol/header.py,sha256=Ee78HGDy6DHQEaOh2AGyG0gQGsoMfqLPnfoCo0CwsyY,3545
|
|
277
|
-
biotite/structure/io/mol/mol.py,sha256=
|
|
278
|
-
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
|
|
279
308
|
biotite/structure/io/netcdf/__init__.py,sha256=BVUimn1EklpgdoCFE5sC-H4E47exDe_xIviMeGnn_tk,363
|
|
280
309
|
biotite/structure/io/netcdf/file.py,sha256=8jht6qCgw0Q7q1-WaQ1iCBjc1QLzjrwpppe3uBZhZ1Y,2256
|
|
281
310
|
biotite/structure/io/pdb/__init__.py,sha256=UqePAxP48oww8SEexxr6JlugRua8wgOryAvxmHd58f4,753
|
|
282
|
-
biotite/structure/io/pdb/convert.py,sha256=
|
|
283
|
-
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
|
|
284
313
|
biotite/structure/io/pdb/hybrid36.pyx,sha256=-feGX_k9H7uAfbqmy37PvlWbuij-mknpbCR2ot1l4kk,8277
|
|
285
314
|
biotite/structure/io/pdbqt/__init__.py,sha256=JiBnbhNHevtmVIwEeYBubOzK5xu1d9dSny7Zf3Aas74,456
|
|
286
315
|
biotite/structure/io/pdbqt/convert.py,sha256=M2SytCYO2ihvpcUQCqz4PD4DAKwCPxcjGbhFhJjbDZY,4121
|
|
287
|
-
biotite/structure/io/pdbqt/file.py,sha256=
|
|
288
|
-
biotite/structure/io/pdbx/__init__.py,sha256=
|
|
289
|
-
biotite/structure/io/pdbx/bcif.py,sha256=
|
|
290
|
-
biotite/structure/io/pdbx/cif.py,sha256=
|
|
291
|
-
biotite/structure/io/pdbx/component.py,sha256=
|
|
292
|
-
biotite/structure/io/pdbx/
|
|
293
|
-
biotite/structure/io/pdbx/
|
|
316
|
+
biotite/structure/io/pdbqt/file.py,sha256=Jl4DiewnIGd9UeVruhTxkZaclIW94aYpMDBHB37PVtc,27326
|
|
317
|
+
biotite/structure/io/pdbx/__init__.py,sha256=0G68Qdc29KdXt0R9di2uBv4r173kuXXqGCbMtDdth0E,740
|
|
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
|
|
323
|
+
biotite/structure/io/pdbx/encoding.pyx,sha256=Ckb9r27HTKLrxRE93Bf-im0mu5R9tuCTh_-2o4NwMWc,32214
|
|
294
324
|
biotite/structure/io/trr/__init__.py,sha256=xp4FpuAy_ESqzVWyugRXUHZ0iF8j5ox6EfCxSWhkcUY,372
|
|
295
325
|
biotite/structure/io/trr/file.py,sha256=XcdYOf9M2tjRXMM87p9U7jMdQb0PlTFvDHXHgSdjbl8,1278
|
|
296
326
|
biotite/structure/io/xtc/__init__.py,sha256=P17UBQnG-KmOlScHp46FXAb5i7d-ZCMlyljcOkFolMw,370
|
|
297
327
|
biotite/structure/io/xtc/file.py,sha256=X4iIDjAWn1ZySg3NjbPeSMNByoyH1y8asmtqcBYycpE,1278
|
|
298
|
-
biotite/sequence/codec.cp311-win_amd64.pyd,sha256=
|
|
299
|
-
biotite/structure/bonds.cp311-win_amd64.pyd,sha256=
|
|
300
|
-
biotite/structure/celllist.cp311-win_amd64.pyd,sha256=
|
|
301
|
-
biotite/structure/charges.cp311-win_amd64.pyd,sha256=
|
|
302
|
-
biotite/structure/sasa.cp311-win_amd64.pyd,sha256=
|
|
303
|
-
biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=
|
|
304
|
-
biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=
|
|
305
|
-
biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=
|
|
306
|
-
biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=
|
|
307
|
-
biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=
|
|
308
|
-
biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=
|
|
309
|
-
biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=
|
|
310
|
-
biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=
|
|
311
|
-
biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=
|
|
312
|
-
biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=
|
|
313
|
-
biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=
|
|
314
|
-
biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=
|
|
315
|
-
biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=
|
|
316
|
-
biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=
|
|
317
|
-
biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=
|
|
318
|
-
biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=
|
|
319
|
-
biotite-1.0.
|
|
320
|
-
biotite-1.0.
|
|
321
|
-
biotite-1.0.
|
|
322
|
-
biotite-1.0.
|
|
328
|
+
biotite/sequence/codec.cp311-win_amd64.pyd,sha256=IZUjyUOoIPn2c-TTlw66grlJzBdyxdnHgYSryy-q_HE,247296
|
|
329
|
+
biotite/structure/bonds.cp311-win_amd64.pyd,sha256=av2Ba2KCW1LNzk52qB1b0w7Ygd8DsmT4OU-Xao6puzg,490496
|
|
330
|
+
biotite/structure/celllist.cp311-win_amd64.pyd,sha256=L_Y_4ye5ntQk5zlTktLy1ATuyA7uOsm9xBNbsWTkHPU,260608
|
|
331
|
+
biotite/structure/charges.cp311-win_amd64.pyd,sha256=mZ0PQCO2aBGMenlukQRo46rEMZzbJwtzCdTjrwvT2yo,217088
|
|
332
|
+
biotite/structure/sasa.cp311-win_amd64.pyd,sha256=_WicgYCYilXq7q0Wb7_YBYgPhhDuaUSXGenQY1oUt6w,194048
|
|
333
|
+
biotite/sequence/align/banded.cp311-win_amd64.pyd,sha256=snmAD7iXhTzVJeoubB9Q4Azk6Q0EeVGM1U09kk5wGoc,497152
|
|
334
|
+
biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd,sha256=4EorpaYvTptdbSBy0AWhe_rf_ruTppjIA2EhlRaPwXE,335872
|
|
335
|
+
biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd,sha256=gqABm-jUKCpy_jhFGDqsODTK3PLXdejLnaClaBnqOZg,175616
|
|
336
|
+
biotite/sequence/align/kmertable.cp311-win_amd64.pyd,sha256=gIH1KfW-65Ck0s6x4YhDj_Ipa01nKkS0tfu3B43LcUI,603648
|
|
337
|
+
biotite/sequence/align/localgapped.cp311-win_amd64.pyd,sha256=T0pLz4up-ojaVC__Cs1boWUJROA23jDlvnE5OQGm6jM,992768
|
|
338
|
+
biotite/sequence/align/localungapped.cp311-win_amd64.pyd,sha256=LqtbVpAIQChxjO1xu24lwir0H0730-QVgsvMqTeyy5k,261632
|
|
339
|
+
biotite/sequence/align/multiple.cp311-win_amd64.pyd,sha256=Y25EqPmKYWG2K4VPbeCZL7o27yI-M3_TsAipK05E7WY,415232
|
|
340
|
+
biotite/sequence/align/pairwise.cp311-win_amd64.pyd,sha256=FaFLMNfJsQ2CSSrR0H1J7c5miVNMXlgZsTB6ZNKakQQ,537088
|
|
341
|
+
biotite/sequence/align/permutation.cp311-win_amd64.pyd,sha256=tWaJoeVzyN-4x2LvjXkscz7a-s0ezS8V56pjy3WiLps,186368
|
|
342
|
+
biotite/sequence/align/selector.cp311-win_amd64.pyd,sha256=N_o2WN7VPoXNPS4Bn98LGIHz0ayAp8RiM_oZS3imyTg,258048
|
|
343
|
+
biotite/sequence/align/tracetable.cp311-win_amd64.pyd,sha256=ebMvXFS6w8v3a5_fPUZWfigOEkzENiM9u6ioCwlxBqM,152064
|
|
344
|
+
biotite/sequence/phylo/nj.cp311-win_amd64.pyd,sha256=ZTJkMnRsCnM4T5y3MMW5Hbk2HiHFWqhPtchWJClVqGo,172544
|
|
345
|
+
biotite/sequence/phylo/tree.cp311-win_amd64.pyd,sha256=lrvbc833oTdU_LqXzqzvZrR0sOK5Emvh5bQXJz7xrRQ,211456
|
|
346
|
+
biotite/sequence/phylo/upgma.cp311-win_amd64.pyd,sha256=hZ3_NAFHz3TOCbTCi5kHmd6JXq4N0gvkD9YAhTub7yY,165376
|
|
347
|
+
biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd,sha256=Bm0p0RgDD0Fnh5oaSztu6mJi51hI-twWVdgYm6UovK4,153088
|
|
348
|
+
biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd,sha256=JtYIHWPqK2hy-Wg8lROn2zs0ZeLJNf_1vKdBCTB6JE8,1009664
|
|
349
|
+
biotite-1.2.0.dist-info/METADATA,sha256=mwg-xyNoWLydJEG7E-KM3V1J3LOto8ZVlu4SZpEp1VA,7318
|
|
350
|
+
biotite-1.2.0.dist-info/WHEEL,sha256=tUtJ5bXThObXzu3Mmtrhn2LpWmyDlL72mq7DuHq3018,97
|
|
351
|
+
biotite-1.2.0.dist-info/licenses/LICENSE.rst,sha256=wDDtR8LuBedgqNIor2N5YGv4nj9flZltCDSu2fhjGbo,1564
|
|
352
|
+
biotite-1.2.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
These files are based on the
|
|
2
|
-
`Chemical Component Dictionary <https://www.wwpdb.org/data/ccd>`_
|
|
3
|
-
and were created using ``setup_ccd.py``.
|
|
4
|
-
|
|
5
|
-
To keep the size of the repository small, the original commit should be
|
|
6
|
-
rewritten, if the formats of the affected files are compatible with the
|
|
7
|
-
original ones.
|
|
8
|
-
The name of the commit is ``Add CCD dataset``.
|