biotite 1.5.0__cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.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 +18 -0
- biotite/application/__init__.py +69 -0
- biotite/application/application.py +276 -0
- biotite/application/autodock/__init__.py +12 -0
- biotite/application/autodock/app.py +500 -0
- biotite/application/blast/__init__.py +14 -0
- biotite/application/blast/alignment.py +92 -0
- biotite/application/blast/webapp.py +428 -0
- biotite/application/clustalo/__init__.py +12 -0
- biotite/application/clustalo/app.py +223 -0
- biotite/application/dssp/__init__.py +12 -0
- biotite/application/dssp/app.py +216 -0
- biotite/application/localapp.py +342 -0
- biotite/application/mafft/__init__.py +12 -0
- biotite/application/mafft/app.py +116 -0
- biotite/application/msaapp.py +363 -0
- biotite/application/muscle/__init__.py +13 -0
- biotite/application/muscle/app3.py +227 -0
- biotite/application/muscle/app5.py +163 -0
- biotite/application/sra/__init__.py +18 -0
- biotite/application/sra/app.py +447 -0
- biotite/application/tantan/__init__.py +12 -0
- biotite/application/tantan/app.py +199 -0
- biotite/application/util.py +77 -0
- biotite/application/viennarna/__init__.py +18 -0
- biotite/application/viennarna/rnaalifold.py +310 -0
- biotite/application/viennarna/rnafold.py +254 -0
- biotite/application/viennarna/rnaplot.py +208 -0
- biotite/application/viennarna/util.py +77 -0
- biotite/application/webapp.py +76 -0
- biotite/copyable.py +71 -0
- biotite/database/__init__.py +23 -0
- biotite/database/afdb/__init__.py +12 -0
- biotite/database/afdb/download.py +197 -0
- biotite/database/entrez/__init__.py +15 -0
- biotite/database/entrez/check.py +60 -0
- biotite/database/entrez/dbnames.py +101 -0
- biotite/database/entrez/download.py +228 -0
- biotite/database/entrez/key.py +44 -0
- biotite/database/entrez/query.py +263 -0
- biotite/database/error.py +16 -0
- biotite/database/pubchem/__init__.py +21 -0
- biotite/database/pubchem/download.py +258 -0
- biotite/database/pubchem/error.py +30 -0
- biotite/database/pubchem/query.py +819 -0
- biotite/database/pubchem/throttle.py +98 -0
- biotite/database/rcsb/__init__.py +13 -0
- biotite/database/rcsb/download.py +161 -0
- biotite/database/rcsb/query.py +963 -0
- biotite/database/uniprot/__init__.py +13 -0
- biotite/database/uniprot/check.py +40 -0
- biotite/database/uniprot/download.py +126 -0
- biotite/database/uniprot/query.py +292 -0
- biotite/file.py +244 -0
- biotite/interface/__init__.py +19 -0
- biotite/interface/openmm/__init__.py +20 -0
- biotite/interface/openmm/state.py +93 -0
- biotite/interface/openmm/system.py +227 -0
- biotite/interface/pymol/__init__.py +201 -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 +1228 -0
- biotite/interface/pymol/shapes.py +178 -0
- biotite/interface/pymol/startup.py +169 -0
- biotite/interface/rdkit/__init__.py +19 -0
- biotite/interface/rdkit/mol.py +490 -0
- biotite/interface/version.py +94 -0
- biotite/interface/warning.py +19 -0
- biotite/sequence/__init__.py +84 -0
- biotite/sequence/align/__init__.py +199 -0
- biotite/sequence/align/alignment.py +702 -0
- biotite/sequence/align/banded.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/banded.pyx +652 -0
- biotite/sequence/align/buckets.py +71 -0
- biotite/sequence/align/cigar.py +425 -0
- biotite/sequence/align/kmeralphabet.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmeralphabet.pyx +595 -0
- biotite/sequence/align/kmersimilarity.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmersimilarity.pyx +233 -0
- biotite/sequence/align/kmertable.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/kmertable.pyx +3411 -0
- biotite/sequence/align/localgapped.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/localgapped.pyx +892 -0
- biotite/sequence/align/localungapped.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/localungapped.pyx +279 -0
- biotite/sequence/align/matrix.py +631 -0
- biotite/sequence/align/matrix_data/3Di.mat +24 -0
- biotite/sequence/align/matrix_data/BLOSUM100.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM30.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM35.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM40.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM45.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM50.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM50_13p.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM50_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM50_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM55.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM60.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM62.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM62_13p.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM62_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM62_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/BLOSUM65.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM70.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM75.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM80.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM85.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUM90.mat +31 -0
- biotite/sequence/align/matrix_data/BLOSUMN.mat +31 -0
- biotite/sequence/align/matrix_data/CorBLOSUM49_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM57_13p.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM57_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM61_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM66_13p.mat +25 -0
- biotite/sequence/align/matrix_data/CorBLOSUM67_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/DAYHOFF.mat +32 -0
- biotite/sequence/align/matrix_data/GONNET.mat +26 -0
- biotite/sequence/align/matrix_data/IDENTITY.mat +25 -0
- biotite/sequence/align/matrix_data/MATCH.mat +25 -0
- biotite/sequence/align/matrix_data/NUC.mat +25 -0
- biotite/sequence/align/matrix_data/PAM10.mat +34 -0
- biotite/sequence/align/matrix_data/PAM100.mat +34 -0
- biotite/sequence/align/matrix_data/PAM110.mat +34 -0
- biotite/sequence/align/matrix_data/PAM120.mat +34 -0
- biotite/sequence/align/matrix_data/PAM130.mat +34 -0
- biotite/sequence/align/matrix_data/PAM140.mat +34 -0
- biotite/sequence/align/matrix_data/PAM150.mat +34 -0
- biotite/sequence/align/matrix_data/PAM160.mat +34 -0
- biotite/sequence/align/matrix_data/PAM170.mat +34 -0
- biotite/sequence/align/matrix_data/PAM180.mat +34 -0
- biotite/sequence/align/matrix_data/PAM190.mat +34 -0
- biotite/sequence/align/matrix_data/PAM20.mat +34 -0
- biotite/sequence/align/matrix_data/PAM200.mat +34 -0
- biotite/sequence/align/matrix_data/PAM210.mat +34 -0
- biotite/sequence/align/matrix_data/PAM220.mat +34 -0
- biotite/sequence/align/matrix_data/PAM230.mat +34 -0
- biotite/sequence/align/matrix_data/PAM240.mat +34 -0
- biotite/sequence/align/matrix_data/PAM250.mat +34 -0
- biotite/sequence/align/matrix_data/PAM260.mat +34 -0
- biotite/sequence/align/matrix_data/PAM270.mat +34 -0
- biotite/sequence/align/matrix_data/PAM280.mat +34 -0
- biotite/sequence/align/matrix_data/PAM290.mat +34 -0
- biotite/sequence/align/matrix_data/PAM30.mat +34 -0
- biotite/sequence/align/matrix_data/PAM300.mat +34 -0
- biotite/sequence/align/matrix_data/PAM310.mat +34 -0
- biotite/sequence/align/matrix_data/PAM320.mat +34 -0
- biotite/sequence/align/matrix_data/PAM330.mat +34 -0
- biotite/sequence/align/matrix_data/PAM340.mat +34 -0
- biotite/sequence/align/matrix_data/PAM350.mat +34 -0
- biotite/sequence/align/matrix_data/PAM360.mat +34 -0
- biotite/sequence/align/matrix_data/PAM370.mat +34 -0
- biotite/sequence/align/matrix_data/PAM380.mat +34 -0
- biotite/sequence/align/matrix_data/PAM390.mat +34 -0
- biotite/sequence/align/matrix_data/PAM40.mat +34 -0
- biotite/sequence/align/matrix_data/PAM400.mat +34 -0
- biotite/sequence/align/matrix_data/PAM410.mat +34 -0
- biotite/sequence/align/matrix_data/PAM420.mat +34 -0
- biotite/sequence/align/matrix_data/PAM430.mat +34 -0
- biotite/sequence/align/matrix_data/PAM440.mat +34 -0
- biotite/sequence/align/matrix_data/PAM450.mat +34 -0
- biotite/sequence/align/matrix_data/PAM460.mat +34 -0
- biotite/sequence/align/matrix_data/PAM470.mat +34 -0
- biotite/sequence/align/matrix_data/PAM480.mat +34 -0
- biotite/sequence/align/matrix_data/PAM490.mat +34 -0
- biotite/sequence/align/matrix_data/PAM50.mat +34 -0
- biotite/sequence/align/matrix_data/PAM500.mat +34 -0
- biotite/sequence/align/matrix_data/PAM60.mat +34 -0
- biotite/sequence/align/matrix_data/PAM70.mat +34 -0
- biotite/sequence/align/matrix_data/PAM80.mat +34 -0
- biotite/sequence/align/matrix_data/PAM90.mat +34 -0
- biotite/sequence/align/matrix_data/PB.license +21 -0
- biotite/sequence/align/matrix_data/PB.mat +18 -0
- biotite/sequence/align/matrix_data/RBLOSUM52_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM59_13p.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM59_14.3.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM64_5.0.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM69_13p.mat +25 -0
- biotite/sequence/align/matrix_data/RBLOSUM69_14.3.mat +25 -0
- biotite/sequence/align/multiple.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/multiple.pyx +619 -0
- biotite/sequence/align/pairwise.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/pairwise.pyx +585 -0
- biotite/sequence/align/permutation.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/permutation.pyx +313 -0
- biotite/sequence/align/primes.txt +821 -0
- biotite/sequence/align/selector.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/selector.pyx +954 -0
- biotite/sequence/align/statistics.py +264 -0
- biotite/sequence/align/tracetable.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/align/tracetable.pxd +64 -0
- biotite/sequence/align/tracetable.pyx +370 -0
- biotite/sequence/alphabet.py +555 -0
- biotite/sequence/annotation.py +836 -0
- biotite/sequence/codec.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/codec.pyx +155 -0
- biotite/sequence/codon.py +476 -0
- biotite/sequence/codon_tables.txt +202 -0
- biotite/sequence/graphics/__init__.py +33 -0
- biotite/sequence/graphics/alignment.py +1101 -0
- biotite/sequence/graphics/color_schemes/3di_flower.json +48 -0
- biotite/sequence/graphics/color_schemes/autumn.json +51 -0
- biotite/sequence/graphics/color_schemes/blossom.json +51 -0
- biotite/sequence/graphics/color_schemes/clustalx_dna.json +11 -0
- biotite/sequence/graphics/color_schemes/clustalx_protein.json +28 -0
- biotite/sequence/graphics/color_schemes/flower.json +51 -0
- biotite/sequence/graphics/color_schemes/jalview_buried.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_hydrophobicity.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_helix.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_strand.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_prop_turn.json +31 -0
- biotite/sequence/graphics/color_schemes/jalview_taylor.json +28 -0
- biotite/sequence/graphics/color_schemes/jalview_zappo.json +28 -0
- biotite/sequence/graphics/color_schemes/ocean.json +51 -0
- biotite/sequence/graphics/color_schemes/pb_flower.json +40 -0
- biotite/sequence/graphics/color_schemes/rainbow_dna.json +11 -0
- biotite/sequence/graphics/color_schemes/rainbow_protein.json +30 -0
- biotite/sequence/graphics/color_schemes/spring.json +51 -0
- biotite/sequence/graphics/color_schemes/sunset.json +51 -0
- biotite/sequence/graphics/color_schemes/wither.json +51 -0
- biotite/sequence/graphics/colorschemes.py +170 -0
- biotite/sequence/graphics/dendrogram.py +231 -0
- biotite/sequence/graphics/features.py +544 -0
- biotite/sequence/graphics/logo.py +102 -0
- biotite/sequence/graphics/plasmid.py +712 -0
- biotite/sequence/io/__init__.py +12 -0
- biotite/sequence/io/fasta/__init__.py +22 -0
- biotite/sequence/io/fasta/convert.py +283 -0
- biotite/sequence/io/fasta/file.py +265 -0
- biotite/sequence/io/fastq/__init__.py +19 -0
- biotite/sequence/io/fastq/convert.py +117 -0
- biotite/sequence/io/fastq/file.py +507 -0
- biotite/sequence/io/genbank/__init__.py +17 -0
- biotite/sequence/io/genbank/annotation.py +269 -0
- biotite/sequence/io/genbank/file.py +573 -0
- biotite/sequence/io/genbank/metadata.py +336 -0
- biotite/sequence/io/genbank/sequence.py +173 -0
- biotite/sequence/io/general.py +201 -0
- biotite/sequence/io/gff/__init__.py +26 -0
- biotite/sequence/io/gff/convert.py +128 -0
- biotite/sequence/io/gff/file.py +449 -0
- biotite/sequence/phylo/__init__.py +36 -0
- biotite/sequence/phylo/nj.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/nj.pyx +221 -0
- biotite/sequence/phylo/tree.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/tree.pyx +1169 -0
- biotite/sequence/phylo/upgma.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/sequence/phylo/upgma.pyx +164 -0
- biotite/sequence/profile.py +561 -0
- biotite/sequence/search.py +117 -0
- biotite/sequence/seqtypes.py +720 -0
- biotite/sequence/sequence.py +373 -0
- biotite/setup_ccd.py +197 -0
- biotite/structure/__init__.py +135 -0
- 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 +1562 -0
- biotite/structure/basepairs.py +1403 -0
- biotite/structure/bonds.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/bonds.pyx +2036 -0
- biotite/structure/box.py +724 -0
- biotite/structure/celllist.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/celllist.pyx +864 -0
- biotite/structure/chains.py +310 -0
- biotite/structure/charges.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/charges.pyx +520 -0
- biotite/structure/compare.py +683 -0
- biotite/structure/density.py +109 -0
- biotite/structure/dotbracket.py +213 -0
- biotite/structure/error.py +39 -0
- biotite/structure/filter.py +591 -0
- biotite/structure/geometry.py +817 -0
- biotite/structure/graphics/__init__.py +13 -0
- biotite/structure/graphics/atoms.py +243 -0
- biotite/structure/graphics/rna.py +298 -0
- biotite/structure/hbond.py +425 -0
- biotite/structure/info/__init__.py +24 -0
- biotite/structure/info/atom_masses.json +121 -0
- biotite/structure/info/atoms.py +98 -0
- biotite/structure/info/bonds.py +149 -0
- biotite/structure/info/ccd.py +200 -0
- biotite/structure/info/components.bcif +0 -0
- biotite/structure/info/groups.py +128 -0
- biotite/structure/info/masses.py +121 -0
- biotite/structure/info/misc.py +137 -0
- biotite/structure/info/radii.py +267 -0
- biotite/structure/info/standardize.py +185 -0
- biotite/structure/integrity.py +213 -0
- biotite/structure/io/__init__.py +29 -0
- biotite/structure/io/dcd/__init__.py +13 -0
- biotite/structure/io/dcd/file.py +67 -0
- biotite/structure/io/general.py +243 -0
- biotite/structure/io/gro/__init__.py +14 -0
- biotite/structure/io/gro/file.py +343 -0
- biotite/structure/io/mol/__init__.py +20 -0
- biotite/structure/io/mol/convert.py +112 -0
- biotite/structure/io/mol/ctab.py +420 -0
- biotite/structure/io/mol/header.py +120 -0
- biotite/structure/io/mol/mol.py +149 -0
- biotite/structure/io/mol/sdf.py +940 -0
- biotite/structure/io/netcdf/__init__.py +13 -0
- biotite/structure/io/netcdf/file.py +64 -0
- biotite/structure/io/pdb/__init__.py +20 -0
- biotite/structure/io/pdb/convert.py +389 -0
- biotite/structure/io/pdb/file.py +1380 -0
- biotite/structure/io/pdb/hybrid36.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/io/pdb/hybrid36.pyx +242 -0
- biotite/structure/io/pdbqt/__init__.py +15 -0
- biotite/structure/io/pdbqt/convert.py +113 -0
- biotite/structure/io/pdbqt/file.py +688 -0
- biotite/structure/io/pdbx/__init__.py +23 -0
- biotite/structure/io/pdbx/bcif.py +674 -0
- biotite/structure/io/pdbx/cif.py +1091 -0
- biotite/structure/io/pdbx/component.py +251 -0
- biotite/structure/io/pdbx/compress.py +362 -0
- biotite/structure/io/pdbx/convert.py +2113 -0
- biotite/structure/io/pdbx/encoding.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/io/pdbx/encoding.pyx +1078 -0
- biotite/structure/io/trajfile.py +696 -0
- biotite/structure/io/trr/__init__.py +13 -0
- biotite/structure/io/trr/file.py +43 -0
- biotite/structure/io/util.py +38 -0
- biotite/structure/io/xtc/__init__.py +13 -0
- biotite/structure/io/xtc/file.py +43 -0
- biotite/structure/mechanics.py +72 -0
- biotite/structure/molecules.py +337 -0
- biotite/structure/pseudoknots.py +622 -0
- biotite/structure/rdf.py +245 -0
- biotite/structure/repair.py +302 -0
- biotite/structure/residues.py +716 -0
- biotite/structure/rings.py +451 -0
- biotite/structure/sasa.cpython-312-x86_64-linux-gnu.so +0 -0
- biotite/structure/sasa.pyx +322 -0
- biotite/structure/segments.py +328 -0
- biotite/structure/sequence.py +110 -0
- biotite/structure/spacegroups.json +1567 -0
- biotite/structure/spacegroups.license +26 -0
- biotite/structure/sse.py +306 -0
- biotite/structure/superimpose.py +511 -0
- biotite/structure/tm.py +581 -0
- biotite/structure/transform.py +736 -0
- biotite/structure/util.py +160 -0
- biotite/version.py +34 -0
- biotite/visualize.py +375 -0
- biotite-1.5.0.dist-info/METADATA +162 -0
- biotite-1.5.0.dist-info/RECORD +354 -0
- biotite-1.5.0.dist-info/WHEEL +6 -0
- biotite-1.5.0.dist-info/licenses/LICENSE.rst +30 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"comment": "Generated with 'gecos --matrix 3Di --name flower --lmin 60 --lmax 80 -f 3di_flower.json'",
|
|
3
|
+
"name": "flower",
|
|
4
|
+
"alphabet": [
|
|
5
|
+
"a",
|
|
6
|
+
"c",
|
|
7
|
+
"d",
|
|
8
|
+
"e",
|
|
9
|
+
"f",
|
|
10
|
+
"g",
|
|
11
|
+
"h",
|
|
12
|
+
"i",
|
|
13
|
+
"k",
|
|
14
|
+
"l",
|
|
15
|
+
"m",
|
|
16
|
+
"n",
|
|
17
|
+
"p",
|
|
18
|
+
"q",
|
|
19
|
+
"r",
|
|
20
|
+
"s",
|
|
21
|
+
"t",
|
|
22
|
+
"v",
|
|
23
|
+
"w",
|
|
24
|
+
"y"
|
|
25
|
+
],
|
|
26
|
+
"colors": {
|
|
27
|
+
"a": "#a189a1",
|
|
28
|
+
"c": "#ff5806",
|
|
29
|
+
"d": "#ab9a93",
|
|
30
|
+
"e": "#e754d5",
|
|
31
|
+
"f": "#8191b5",
|
|
32
|
+
"g": "#cbc7ae",
|
|
33
|
+
"h": "#dac1bc",
|
|
34
|
+
"i": "#5eaf6e",
|
|
35
|
+
"k": "#04c1fd",
|
|
36
|
+
"l": "#ff544b",
|
|
37
|
+
"m": "#07e560",
|
|
38
|
+
"n": "#f28d05",
|
|
39
|
+
"p": "#b68767",
|
|
40
|
+
"q": "#bc8277",
|
|
41
|
+
"r": "#eebe86",
|
|
42
|
+
"s": "#ffa103",
|
|
43
|
+
"t": "#a4c49a",
|
|
44
|
+
"v": "#ed6903",
|
|
45
|
+
"w": "#3a97d8",
|
|
46
|
+
"y": "#f7adfd"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autumn",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"A",
|
|
5
|
+
"C",
|
|
6
|
+
"D",
|
|
7
|
+
"E",
|
|
8
|
+
"F",
|
|
9
|
+
"G",
|
|
10
|
+
"H",
|
|
11
|
+
"I",
|
|
12
|
+
"K",
|
|
13
|
+
"L",
|
|
14
|
+
"M",
|
|
15
|
+
"N",
|
|
16
|
+
"P",
|
|
17
|
+
"Q",
|
|
18
|
+
"R",
|
|
19
|
+
"S",
|
|
20
|
+
"T",
|
|
21
|
+
"V",
|
|
22
|
+
"W",
|
|
23
|
+
"Y",
|
|
24
|
+
"B",
|
|
25
|
+
"Z",
|
|
26
|
+
"X",
|
|
27
|
+
"*"
|
|
28
|
+
],
|
|
29
|
+
"colors": {
|
|
30
|
+
"A": "#6a6a6a",
|
|
31
|
+
"C": "#01885a",
|
|
32
|
+
"D": "#a8060d",
|
|
33
|
+
"E": "#d33860",
|
|
34
|
+
"F": "#2876d9",
|
|
35
|
+
"G": "#bc5d04",
|
|
36
|
+
"H": "#de05a7",
|
|
37
|
+
"I": "#1c7897",
|
|
38
|
+
"K": "#982649",
|
|
39
|
+
"L": "#437bad",
|
|
40
|
+
"M": "#484f7d",
|
|
41
|
+
"N": "#df3245",
|
|
42
|
+
"P": "#8a7305",
|
|
43
|
+
"Q": "#c54b7e",
|
|
44
|
+
"R": "#a1035f",
|
|
45
|
+
"S": "#a9645d",
|
|
46
|
+
"T": "#674d39",
|
|
47
|
+
"V": "#26586a",
|
|
48
|
+
"W": "#1834e9",
|
|
49
|
+
"Y": "#8361d9"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "blossom",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"A",
|
|
5
|
+
"C",
|
|
6
|
+
"D",
|
|
7
|
+
"E",
|
|
8
|
+
"F",
|
|
9
|
+
"G",
|
|
10
|
+
"H",
|
|
11
|
+
"I",
|
|
12
|
+
"K",
|
|
13
|
+
"L",
|
|
14
|
+
"M",
|
|
15
|
+
"N",
|
|
16
|
+
"P",
|
|
17
|
+
"Q",
|
|
18
|
+
"R",
|
|
19
|
+
"S",
|
|
20
|
+
"T",
|
|
21
|
+
"V",
|
|
22
|
+
"W",
|
|
23
|
+
"Y",
|
|
24
|
+
"B",
|
|
25
|
+
"Z",
|
|
26
|
+
"X",
|
|
27
|
+
"*"
|
|
28
|
+
],
|
|
29
|
+
"colors": {
|
|
30
|
+
"A": "#8bc4b4",
|
|
31
|
+
"C": "#0893fe",
|
|
32
|
+
"D": "#5fa505",
|
|
33
|
+
"E": "#dbb501",
|
|
34
|
+
"F": "#f74fa8",
|
|
35
|
+
"G": "#00d382",
|
|
36
|
+
"H": "#ff5701",
|
|
37
|
+
"I": "#9abaf3",
|
|
38
|
+
"K": "#fea527",
|
|
39
|
+
"L": "#cda5dc",
|
|
40
|
+
"M": "#f5a1b8",
|
|
41
|
+
"N": "#b5c206",
|
|
42
|
+
"P": "#10d631",
|
|
43
|
+
"Q": "#bf8527",
|
|
44
|
+
"R": "#fc9502",
|
|
45
|
+
"S": "#7e9d59",
|
|
46
|
+
"T": "#00a29c",
|
|
47
|
+
"V": "#87c0e4",
|
|
48
|
+
"W": "#fe08fb",
|
|
49
|
+
"Y": "#ff4e7a"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "clustalx",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#197fe5",
|
|
8
|
+
"C" : "#e57f7f",
|
|
9
|
+
"D" : "#cc4ccc",
|
|
10
|
+
"E" : "#cc4ccc",
|
|
11
|
+
"F" : "#197fe5",
|
|
12
|
+
"G" : "#e5994c",
|
|
13
|
+
"H" : "#19b2b2",
|
|
14
|
+
"I" : "#197fe5",
|
|
15
|
+
"K" : "#e53319",
|
|
16
|
+
"L" : "#197fe5",
|
|
17
|
+
"M" : "#197fe5",
|
|
18
|
+
"N" : "#19cc19",
|
|
19
|
+
"P" : "#cccc00",
|
|
20
|
+
"Q" : "#19cc19",
|
|
21
|
+
"R" : "#e53319",
|
|
22
|
+
"S" : "#19cc19",
|
|
23
|
+
"T" : "#19cc19",
|
|
24
|
+
"V" : "#197fe5",
|
|
25
|
+
"W" : "#197fe5",
|
|
26
|
+
"Y" : "#19b2b2"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flower",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"A",
|
|
5
|
+
"C",
|
|
6
|
+
"D",
|
|
7
|
+
"E",
|
|
8
|
+
"F",
|
|
9
|
+
"G",
|
|
10
|
+
"H",
|
|
11
|
+
"I",
|
|
12
|
+
"K",
|
|
13
|
+
"L",
|
|
14
|
+
"M",
|
|
15
|
+
"N",
|
|
16
|
+
"P",
|
|
17
|
+
"Q",
|
|
18
|
+
"R",
|
|
19
|
+
"S",
|
|
20
|
+
"T",
|
|
21
|
+
"V",
|
|
22
|
+
"W",
|
|
23
|
+
"Y",
|
|
24
|
+
"B",
|
|
25
|
+
"Z",
|
|
26
|
+
"X",
|
|
27
|
+
"*"
|
|
28
|
+
],
|
|
29
|
+
"colors": {
|
|
30
|
+
"A": "#b18a51",
|
|
31
|
+
"C": "#ff5701",
|
|
32
|
+
"D": "#01a578",
|
|
33
|
+
"E": "#2da0a1",
|
|
34
|
+
"F": "#fa559d",
|
|
35
|
+
"G": "#b1c23c",
|
|
36
|
+
"H": "#0194f9",
|
|
37
|
+
"I": "#f27663",
|
|
38
|
+
"K": "#7fc3d7",
|
|
39
|
+
"L": "#df6e75",
|
|
40
|
+
"M": "#fe9daf",
|
|
41
|
+
"N": "#0bcec6",
|
|
42
|
+
"P": "#4fa32a",
|
|
43
|
+
"Q": "#7295ae",
|
|
44
|
+
"R": "#83bff1",
|
|
45
|
+
"S": "#b4bd9b",
|
|
46
|
+
"T": "#d2b576",
|
|
47
|
+
"V": "#fd997b",
|
|
48
|
+
"W": "#ff2ded",
|
|
49
|
+
"Y": "#c96ecf"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "buried",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#00a35c",
|
|
8
|
+
"R" : "#00fc03",
|
|
9
|
+
"N" : "#00eb14",
|
|
10
|
+
"D" : "#00eb14",
|
|
11
|
+
"C" : "#0000ff",
|
|
12
|
+
"Q" : "#00f10e",
|
|
13
|
+
"E" : "#00f10e",
|
|
14
|
+
"G" : "#009d62",
|
|
15
|
+
"H" : "#00d52a",
|
|
16
|
+
"I" : "#0054ab",
|
|
17
|
+
"L" : "#007b84",
|
|
18
|
+
"K" : "#00ff00",
|
|
19
|
+
"M" : "#009768",
|
|
20
|
+
"F" : "#008778",
|
|
21
|
+
"P" : "#00e01f",
|
|
22
|
+
"S" : "#00d52a",
|
|
23
|
+
"T" : "#00db24",
|
|
24
|
+
"W" : "#00a857",
|
|
25
|
+
"Y" : "#00e619",
|
|
26
|
+
"V" : "#005fa0",
|
|
27
|
+
"B" : "#00eb14",
|
|
28
|
+
"X" : "#00b649",
|
|
29
|
+
"Z" : "#00f10e"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "hydrophobicity",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#ad0052",
|
|
8
|
+
"R" : "#0000ff",
|
|
9
|
+
"N" : "#0c00f3",
|
|
10
|
+
"D" : "#0c00f3",
|
|
11
|
+
"C" : "#c2003d",
|
|
12
|
+
"Q" : "#0c00f3",
|
|
13
|
+
"E" : "#0c00f3",
|
|
14
|
+
"G" : "#6a0095",
|
|
15
|
+
"H" : "#1500ea",
|
|
16
|
+
"I" : "#ff0000",
|
|
17
|
+
"L" : "#ea0015",
|
|
18
|
+
"K" : "#0000ff",
|
|
19
|
+
"M" : "#b0004f",
|
|
20
|
+
"F" : "#cb0034",
|
|
21
|
+
"P" : "#4600b9",
|
|
22
|
+
"S" : "#5e00a1",
|
|
23
|
+
"T" : "#61009e",
|
|
24
|
+
"W" : "#5b00a4",
|
|
25
|
+
"Y" : "#4f00b0",
|
|
26
|
+
"V" : "#f60009",
|
|
27
|
+
"B" : "#0c00f3",
|
|
28
|
+
"X" : "#680097",
|
|
29
|
+
"Z" : "#0c00f3"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "prophelix",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#e718e7",
|
|
8
|
+
"R" : "#6f906f",
|
|
9
|
+
"N" : "#1be41b",
|
|
10
|
+
"D" : "#778877",
|
|
11
|
+
"C" : "#23dc23",
|
|
12
|
+
"Q" : "#926d92",
|
|
13
|
+
"E" : "#ff00ff",
|
|
14
|
+
"G" : "#00ff00",
|
|
15
|
+
"H" : "#758a75",
|
|
16
|
+
"I" : "#8a758a",
|
|
17
|
+
"L" : "#ae51ae",
|
|
18
|
+
"K" : "#a05fa0",
|
|
19
|
+
"M" : "#ef10ef",
|
|
20
|
+
"F" : "#986798",
|
|
21
|
+
"P" : "#00ff00",
|
|
22
|
+
"S" : "#36c936",
|
|
23
|
+
"T" : "#47b847",
|
|
24
|
+
"W" : "#8a758a",
|
|
25
|
+
"Y" : "#21de21",
|
|
26
|
+
"V" : "#857a85",
|
|
27
|
+
"B" : "#49b649",
|
|
28
|
+
"X" : "#758a75",
|
|
29
|
+
"Z" : "#c936c9"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "propstrand",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#5858a7",
|
|
8
|
+
"R" : "#6b6b94",
|
|
9
|
+
"N" : "#64649b",
|
|
10
|
+
"D" : "#2121de",
|
|
11
|
+
"C" : "#9d9d62",
|
|
12
|
+
"Q" : "#8c8c73",
|
|
13
|
+
"E" : "#0000ff",
|
|
14
|
+
"G" : "#4949b6",
|
|
15
|
+
"H" : "#60609f",
|
|
16
|
+
"I" : "#ecec13",
|
|
17
|
+
"L" : "#b2b24d",
|
|
18
|
+
"K" : "#4747b8",
|
|
19
|
+
"M" : "#82827d",
|
|
20
|
+
"F" : "#c2c23d",
|
|
21
|
+
"P" : "#2323dc",
|
|
22
|
+
"S" : "#4949b6",
|
|
23
|
+
"T" : "#9d9d62",
|
|
24
|
+
"W" : "#c0c03f",
|
|
25
|
+
"Y" : "#d3d32c",
|
|
26
|
+
"V" : "#ffff00",
|
|
27
|
+
"B" : "#4343bc",
|
|
28
|
+
"X" : "#797986",
|
|
29
|
+
"Z" : "#4747b8"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "propturn",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#2cd3d3",
|
|
8
|
+
"R" : "#708f8f",
|
|
9
|
+
"N" : "#ff0000",
|
|
10
|
+
"D" : "#e81717",
|
|
11
|
+
"C" : "#a85757",
|
|
12
|
+
"Q" : "#3fc0c0",
|
|
13
|
+
"E" : "#778888",
|
|
14
|
+
"G" : "#ff0000",
|
|
15
|
+
"H" : "#708f8f",
|
|
16
|
+
"I" : "#00ffff",
|
|
17
|
+
"L" : "#1ce3e3",
|
|
18
|
+
"K" : "#7e8181",
|
|
19
|
+
"M" : "#1ee1e1",
|
|
20
|
+
"F" : "#1ee1e1",
|
|
21
|
+
"P" : "#f60909",
|
|
22
|
+
"S" : "#e11e1e",
|
|
23
|
+
"T" : "#738c8c",
|
|
24
|
+
"W" : "#738c8c",
|
|
25
|
+
"Y" : "#9d6262",
|
|
26
|
+
"V" : "#07f8f8",
|
|
27
|
+
"B" : "#f30c0c",
|
|
28
|
+
"X" : "#7c8383",
|
|
29
|
+
"Z" : "#5ba4a4"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "taylor",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#ccff00",
|
|
8
|
+
"R" : "#0000ff",
|
|
9
|
+
"N" : "#cc00ff",
|
|
10
|
+
"D" : "#ff0000",
|
|
11
|
+
"C" : "#ffff00",
|
|
12
|
+
"Q" : "#ff00cc",
|
|
13
|
+
"E" : "#ff0066",
|
|
14
|
+
"G" : "#ff9900",
|
|
15
|
+
"H" : "#0066ff",
|
|
16
|
+
"I" : "#66ff00",
|
|
17
|
+
"L" : "#33ff00",
|
|
18
|
+
"K" : "#6600ff",
|
|
19
|
+
"M" : "#00ff00",
|
|
20
|
+
"F" : "#00ff66",
|
|
21
|
+
"P" : "#ffcc00",
|
|
22
|
+
"S" : "#ff3300",
|
|
23
|
+
"T" : "#ff6600",
|
|
24
|
+
"W" : "#00ccff",
|
|
25
|
+
"Y" : "#00ffcc",
|
|
26
|
+
"V" : "#99ff00"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "zappo",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#ffafaf",
|
|
8
|
+
"R" : "#6464ff",
|
|
9
|
+
"N" : "#00ff00",
|
|
10
|
+
"D" : "#ff0000",
|
|
11
|
+
"C" : "#ffff00",
|
|
12
|
+
"Q" : "#00ff00",
|
|
13
|
+
"E" : "#ff0000",
|
|
14
|
+
"G" : "#ff00ff",
|
|
15
|
+
"H" : "#6464ff",
|
|
16
|
+
"I" : "#ffafaf",
|
|
17
|
+
"L" : "#ffafaf",
|
|
18
|
+
"K" : "#6464ff",
|
|
19
|
+
"M" : "#ffafaf",
|
|
20
|
+
"F" : "#ffc800",
|
|
21
|
+
"P" : "#ff00ff",
|
|
22
|
+
"S" : "#00ff00",
|
|
23
|
+
"T" : "#00ff00",
|
|
24
|
+
"W" : "#ffc800",
|
|
25
|
+
"Y" : "#ffc800",
|
|
26
|
+
"V" : "#ffafaf"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ocean",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"A",
|
|
5
|
+
"C",
|
|
6
|
+
"D",
|
|
7
|
+
"E",
|
|
8
|
+
"F",
|
|
9
|
+
"G",
|
|
10
|
+
"H",
|
|
11
|
+
"I",
|
|
12
|
+
"K",
|
|
13
|
+
"L",
|
|
14
|
+
"M",
|
|
15
|
+
"N",
|
|
16
|
+
"P",
|
|
17
|
+
"Q",
|
|
18
|
+
"R",
|
|
19
|
+
"S",
|
|
20
|
+
"T",
|
|
21
|
+
"V",
|
|
22
|
+
"W",
|
|
23
|
+
"Y",
|
|
24
|
+
"B",
|
|
25
|
+
"Z",
|
|
26
|
+
"X",
|
|
27
|
+
"*"
|
|
28
|
+
],
|
|
29
|
+
"colors": {
|
|
30
|
+
"A": "#c6ca9b",
|
|
31
|
+
"C": "#c68136",
|
|
32
|
+
"D": "#4cdfa1",
|
|
33
|
+
"E": "#60dac9",
|
|
34
|
+
"F": "#ab88ae",
|
|
35
|
+
"G": "#33a551",
|
|
36
|
+
"H": "#00cffe",
|
|
37
|
+
"I": "#f2baaa",
|
|
38
|
+
"K": "#40a090",
|
|
39
|
+
"L": "#bb8a83",
|
|
40
|
+
"M": "#a48b88",
|
|
41
|
+
"N": "#0adfc3",
|
|
42
|
+
"P": "#afd365",
|
|
43
|
+
"Q": "#8bd3d1",
|
|
44
|
+
"R": "#0ca0a8",
|
|
45
|
+
"S": "#6d9b74",
|
|
46
|
+
"T": "#8d9566",
|
|
47
|
+
"V": "#e9bea4",
|
|
48
|
+
"W": "#758aee",
|
|
49
|
+
"Y": "#bac3fc"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flower",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"a",
|
|
5
|
+
"b",
|
|
6
|
+
"c",
|
|
7
|
+
"d",
|
|
8
|
+
"e",
|
|
9
|
+
"f",
|
|
10
|
+
"g",
|
|
11
|
+
"h",
|
|
12
|
+
"i",
|
|
13
|
+
"j",
|
|
14
|
+
"k",
|
|
15
|
+
"l",
|
|
16
|
+
"m",
|
|
17
|
+
"n",
|
|
18
|
+
"o",
|
|
19
|
+
"p",
|
|
20
|
+
"z"
|
|
21
|
+
],
|
|
22
|
+
"colors": {
|
|
23
|
+
"a": "#31b5fc",
|
|
24
|
+
"b": "#c6a2ac",
|
|
25
|
+
"c": "#36a4f9",
|
|
26
|
+
"d": "#c981ff",
|
|
27
|
+
"e": "#fe60ce",
|
|
28
|
+
"f": "#fb69b5",
|
|
29
|
+
"g": "#4fabb2",
|
|
30
|
+
"h": "#ff7076",
|
|
31
|
+
"i": "#c8a677",
|
|
32
|
+
"j": "#fb7559",
|
|
33
|
+
"k": "#fc7710",
|
|
34
|
+
"l": "#c1a41a",
|
|
35
|
+
"m": "#56c205",
|
|
36
|
+
"n": "#01bd40",
|
|
37
|
+
"o": "#07c387",
|
|
38
|
+
"p": "#08c0ad"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name" : "rainbow",
|
|
3
|
+
"alphabet" : ["A","C","D","E","F","G","H","I","K","L",
|
|
4
|
+
"M","N","P","Q","R","S","T","V","W","Y",
|
|
5
|
+
"B","Z","X","*"],
|
|
6
|
+
"colors" : {
|
|
7
|
+
"A" : "#cbf537",
|
|
8
|
+
"C" : "#f537a5",
|
|
9
|
+
"D" : "#377af5",
|
|
10
|
+
"E" : "#3739f5",
|
|
11
|
+
"F" : "#37f57a",
|
|
12
|
+
"G" : "#eaf537",
|
|
13
|
+
"H" : "#f53737",
|
|
14
|
+
"I" : "#8cf537",
|
|
15
|
+
"K" : "#f53755",
|
|
16
|
+
"L" : "#6df537",
|
|
17
|
+
"M" : "#4df537",
|
|
18
|
+
"N" : "#bd37f5",
|
|
19
|
+
"P" : "#f5bf37",
|
|
20
|
+
"Q" : "#9037f5",
|
|
21
|
+
"R" : "#f56437",
|
|
22
|
+
"S" : "#f537d3",
|
|
23
|
+
"T" : "#ea37f5",
|
|
24
|
+
"V" : "#abf537",
|
|
25
|
+
"W" : "#37f5b9",
|
|
26
|
+
"Y" : "#37f599",
|
|
27
|
+
"B" : "#377af5",
|
|
28
|
+
"Z" : "#3739f5"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "spring",
|
|
3
|
+
"alphabet": [
|
|
4
|
+
"A",
|
|
5
|
+
"C",
|
|
6
|
+
"D",
|
|
7
|
+
"E",
|
|
8
|
+
"F",
|
|
9
|
+
"G",
|
|
10
|
+
"H",
|
|
11
|
+
"I",
|
|
12
|
+
"K",
|
|
13
|
+
"L",
|
|
14
|
+
"M",
|
|
15
|
+
"N",
|
|
16
|
+
"P",
|
|
17
|
+
"Q",
|
|
18
|
+
"R",
|
|
19
|
+
"S",
|
|
20
|
+
"T",
|
|
21
|
+
"V",
|
|
22
|
+
"W",
|
|
23
|
+
"Y",
|
|
24
|
+
"B",
|
|
25
|
+
"Z",
|
|
26
|
+
"X",
|
|
27
|
+
"*"
|
|
28
|
+
],
|
|
29
|
+
"colors": {
|
|
30
|
+
"A": "#ababab",
|
|
31
|
+
"C": "#0893fe",
|
|
32
|
+
"D": "#fc5977",
|
|
33
|
+
"E": "#ff9c83",
|
|
34
|
+
"F": "#02d29b",
|
|
35
|
+
"G": "#f66c17",
|
|
36
|
+
"H": "#d2b907",
|
|
37
|
+
"I": "#3fc9e0",
|
|
38
|
+
"K": "#b7874f",
|
|
39
|
+
"L": "#4ecacf",
|
|
40
|
+
"M": "#4b9e93",
|
|
41
|
+
"N": "#eb684b",
|
|
42
|
+
"P": "#fd75cf",
|
|
43
|
+
"Q": "#deb16f",
|
|
44
|
+
"R": "#b38b2b",
|
|
45
|
+
"S": "#bb8187",
|
|
46
|
+
"T": "#d3add1",
|
|
47
|
+
"V": "#519db9",
|
|
48
|
+
"W": "#00d619",
|
|
49
|
+
"Y": "#38a549"
|
|
50
|
+
}
|
|
51
|
+
}
|