Smilesjs commited on
Commit
32c143f
·
verified ·
1 Parent(s): b3df3ea

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +7 -0
  2. .gitignore +32 -0
  3. README.md +2 -0
  4. azure_ml_taxonomy_aware_submit.ipynb +252 -0
  5. dataset/IA.tsv +0 -0
  6. dataset/go_info/go-basic.obo +3 -0
  7. dataset/go_info/go_ancestor_matrix.npz +3 -0
  8. dataset/go_info/go_term_mappings.pkl +3 -0
  9. dataset/learning_superset/large_learning_superset.fasta +3 -0
  10. dataset/learning_superset/large_learning_superset_term.tsv +3 -0
  11. dataset/taxon_embedding/species_vectors.tsv +0 -0
  12. dataset/taxon_embedding/vocab/class_vocab.json +275 -0
  13. dataset/taxon_embedding/vocab/family_vocab.json +1994 -0
  14. dataset/taxon_embedding/vocab/genus_vocab.json +0 -0
  15. dataset/taxon_embedding/vocab/order_vocab.json +784 -0
  16. dataset/taxon_embedding/vocab/phylum_vocab.json +122 -0
  17. dataset/taxon_embedding/vocab/species_vocab.json +0 -0
  18. dataset/taxon_embedding/vocab/subspecies_vocab.json +2111 -0
  19. dataset/validation_superset/validation_homolog/validation_homolog.fasta +0 -0
  20. dataset/validation_superset/validation_homolog/validation_homolog_terms.tsv +0 -0
  21. dataset/validation_superset/validation_novel/validation_novel.fasta +0 -0
  22. dataset/validation_superset/validation_novel/validation_novel_terms.tsv +0 -0
  23. dataset/validation_superset/validation_superset.fasta +0 -0
  24. dataset/validation_superset/validation_superset_term.tsv +0 -0
  25. local_train.py +70 -0
  26. model_analysis.py +179 -0
  27. requirements.txt +19 -0
  28. src/CAFA-evaluator-PK/.gitattributes +1 -0
  29. src/CAFA-evaluator-PK/.gitignore +12 -0
  30. src/CAFA-evaluator-PK/CHANGELOG.md +43 -0
  31. src/CAFA-evaluator-PK/EvalutingCAFAPartial.jpg +3 -0
  32. src/CAFA-evaluator-PK/LICENCE.md +674 -0
  33. src/CAFA-evaluator-PK/README.md +181 -0
  34. src/CAFA-evaluator-PK/example/.python-version +1 -0
  35. src/CAFA-evaluator-PK/example/README.md +94 -0
  36. src/CAFA-evaluator-PK/example/go-sample.obo +105 -0
  37. src/CAFA-evaluator-PK/example/ground_truth_limited.tsv +4 -0
  38. src/CAFA-evaluator-PK/example/ground_truth_partial.tsv +6 -0
  39. src/CAFA-evaluator-PK/example/known_t0.tsv +7 -0
  40. src/CAFA-evaluator-PK/example/predictions.png +3 -0
  41. src/CAFA-evaluator-PK/example/predictions/pred_1.tsv +27 -0
  42. src/CAFA-evaluator-PK/example/predictions/pred_2.tsv +27 -0
  43. src/CAFA-evaluator-PK/example/sample_eval.jpg +3 -0
  44. src/CAFA-evaluator-PK/example/toi.tsv +7 -0
  45. src/CAFA-evaluator-PK/pyproject.toml +43 -0
  46. src/CAFA-evaluator-PK/setup.py +3 -0
  47. src/CAFA-evaluator-PK/src/cafaeval/__init__.py +0 -0
  48. src/CAFA-evaluator-PK/src/cafaeval/__main__.py +69 -0
  49. src/CAFA-evaluator-PK/src/cafaeval/evaluation.py +355 -0
  50. src/CAFA-evaluator-PK/src/cafaeval/graph.py +182 -0
.gitattributes CHANGED
@@ -57,3 +57,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ MHA/go_info/go-basic.obo filter=lfs diff=lfs merge=lfs -text
61
+ MHA/learning_superset/large_learning_superset.fasta filter=lfs diff=lfs merge=lfs -text
62
+ MHA/learning_superset/large_learning_superset_term.tsv filter=lfs diff=lfs merge=lfs -text
63
+ dataset/go_info/go-basic.obo filter=lfs diff=lfs merge=lfs -text
64
+ dataset/learning_superset/large_learning_superset.fasta filter=lfs diff=lfs merge=lfs -text
65
+ dataset/learning_superset/large_learning_superset_term.tsv filter=lfs diff=lfs merge=lfs -text
66
+ src/mlflow.db filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # User specified ignores
2
+ uniprot_f_set/
3
+ config.json
4
+ plan.md
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+
11
+ # Environments
12
+ .env
13
+ .venv
14
+ env/
15
+ venv/
16
+ ENV/
17
+ env.bak/
18
+ venv.bak/
19
+
20
+ # IDEs
21
+ .vscode/
22
+ .idea/
23
+
24
+ # Large files
25
+ *.pth
26
+ *.ckpt
27
+
28
+ # Output directories
29
+ metrics/
30
+ mlruns/
31
+ outputs/
32
+ preds_temp/
README.md ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # taxonomy_aware_ESM2
2
+ This repository implements a Taxonomy-Aware Protein Function Prediction model. It synergizes the structural language understanding of ESM2 (Evolutionary Scale Modeling) with explicit phylogenetic lineage information.
azure_ml_taxonomy_aware_submit.ipynb ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {},
6
+ "source": [
7
+ "# Taxonomy Aware ESM Training Submission\n",
8
+ "\n",
9
+ "This notebook submits the training job to Azure ML.\n",
10
+ "It uses `src/train.py` and the dataset `azureml:MHD:2`."
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": 6,
16
+ "metadata": {},
17
+ "outputs": [
18
+ {
19
+ "name": "stdout",
20
+ "output_type": "stream",
21
+ "text": [
22
+ "Connecting to Azure ML...\n"
23
+ ]
24
+ },
25
+ {
26
+ "name": "stderr",
27
+ "output_type": "stream",
28
+ "text": [
29
+ "Found the config file in: .\\config.json\n",
30
+ "Overriding of current TracerProvider is not allowed\n",
31
+ "Overriding of current LoggerProvider is not allowed\n",
32
+ "Overriding of current MeterProvider is not allowed\n",
33
+ "Attempting to instrument while already instrumented\n",
34
+ "Attempting to instrument while already instrumented\n",
35
+ "Attempting to instrument while already instrumented\n",
36
+ "Attempting to instrument while already instrumented\n"
37
+ ]
38
+ },
39
+ {
40
+ "name": "stdout",
41
+ "output_type": "stream",
42
+ "text": [
43
+ "Connected to workspace: azure_ML\n"
44
+ ]
45
+ }
46
+ ],
47
+ "source": [
48
+ "from azure.ai.ml import MLClient, command, Input\n",
49
+ "from azure.identity import InteractiveBrowserCredential\n",
50
+ "from azure.ai.ml.entities import Environment\n",
51
+ "import logging\n",
52
+ "import os\n",
53
+ "\n",
54
+ "# Decrease logging noise for Azure Identity\n",
55
+ "logging.getLogger(\"azure.identity\").setLevel(logging.WARNING)\n",
56
+ "\n",
57
+ "# 1. Connect to Azure ML\n",
58
+ "print(\"Connecting to Azure ML...\")\n",
59
+ "\n",
60
+ "# STRICT CONFIGURATION\n",
61
+ "TENANT_ID = \"3569a77b-5841-417b-b138-12b5fe698c9c\"\n",
62
+ "\n",
63
+ "# We enforce InteractiveBrowserCredential to ensure the correct tenant login.\n",
64
+ "try:\n",
65
+ " credential = InteractiveBrowserCredential(tenant_id=TENANT_ID)\n",
66
+ " # Force a token fetch to trigger the login prompt immediately\n",
67
+ " credential.get_token(\"https://management.azure.com/.default\")\n",
68
+ " \n",
69
+ " ml_client = MLClient.from_config(credential=credential)\n",
70
+ " print(f\"Connected to workspace: {ml_client.workspace_name}\")\n",
71
+ "except Exception as e:\n",
72
+ " print(f\"Authentication failed: {e}\")\n",
73
+ " raise e"
74
+ ]
75
+ },
76
+ {
77
+ "cell_type": "code",
78
+ "execution_count": 7,
79
+ "metadata": {},
80
+ "outputs": [
81
+ {
82
+ "name": "stdout",
83
+ "output_type": "stream",
84
+ "text": [
85
+ "Using existing environment: cafa6-torch-env:5\n"
86
+ ]
87
+ }
88
+ ],
89
+ "source": [
90
+ "# --- Environment Configuration ---\n",
91
+ "USE_EXIST_ENV = True # Set to False to rebuild environment\n",
92
+ "ENV_NAME = \"cafa6-torch-env\"\n",
93
+ "ENV_VERSION = \"5\" # Increment version\n",
94
+ "ENV_PATH = \"C:/workspace/CAFA_6_hjs/env\"\n",
95
+ "\n",
96
+ "if USE_EXIST_ENV:\n",
97
+ " print(f\"Using existing environment: {ENV_NAME}:{ENV_VERSION}\")\n",
98
+ " env = f\"{ENV_NAME}:{ENV_VERSION}\"\n",
99
+ "else:\n",
100
+ " print(f\"Building new environment: {ENV_NAME}:{ENV_VERSION} from {ENV_PATH}\")\n",
101
+ " env = Environment(\n",
102
+ " name=ENV_NAME,\n",
103
+ " version=ENV_VERSION,\n",
104
+ " image=\"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04\",\n",
105
+ " conda_file=f\"{ENV_PATH}/conda.yaml\",\n",
106
+ " description=\"Environment with PyTorch, ESM, and PEFT for LoRA\"\n",
107
+ " )\n",
108
+ " ml_client.environments.create_or_update(env)\n",
109
+ " print(\"Environment built and registered.\")\n"
110
+ ]
111
+ },
112
+ {
113
+ "cell_type": "markdown",
114
+ "metadata": {},
115
+ "source": [
116
+ "## Parameter Center\n",
117
+ "Adjust the training hyperparameters below."
118
+ ]
119
+ },
120
+ {
121
+ "cell_type": "code",
122
+ "execution_count": 8,
123
+ "metadata": {},
124
+ "outputs": [
125
+ {
126
+ "name": "stdout",
127
+ "output_type": "stream",
128
+ "text": [
129
+ "Training Command: python train.py --data_path ${inputs.dataset} --epochs 20 --batch_size 64 --lr 0.0001 --min_lr 1e-06 --num_workers 8 --T_0 10 --T_mult 1 --esm_model_name facebook/esm2_t6_8M_UR50D --gamma_neg 4 --gamma_pos 0 --clip 0.05 --use_lora True --lora_rank 8\n"
130
+ ]
131
+ }
132
+ ],
133
+ "source": [
134
+ "# --- Training Hyperparameters ---\n",
135
+ "ESM_MODEL = \"facebook/esm2_t6_8M_UR50D\" \n",
136
+ "LEARNING_RATE = 1e-4\n",
137
+ "MIN_LR = 1e-6\n",
138
+ "BATCH_SIZE = 64\n",
139
+ "EPOCHS = 20\n",
140
+ "NUM_WORKERS = 8\n",
141
+ "\n",
142
+ "# --- Scheduler Settings (CosineAnnealingWarmRestarts) ---\n",
143
+ "T_0 = 10 \n",
144
+ "T_MULT = 1\n",
145
+ "\n",
146
+ "# --- Asymmetric Loss Parameters ---\n",
147
+ "GAMMA_NEG = 4\n",
148
+ "GAMMA_POS = 0\n",
149
+ "CLIP = 0.05\n",
150
+ "\n",
151
+ "# --- LoRA Parameters ---\n",
152
+ "USE_LORA = True\n",
153
+ "LORA_RANK = 8\n",
154
+ "\n",
155
+ "# --- Command Construction ---\n",
156
+ "training_command = (\n",
157
+ " f\"python train.py \"\n",
158
+ " f\"--data_path ${{inputs.dataset}} \"\n",
159
+ " f\"--epochs {EPOCHS} \"\n",
160
+ " f\"--batch_size {BATCH_SIZE} \"\n",
161
+ " f\"--lr {LEARNING_RATE} \"\n",
162
+ " f\"--min_lr {MIN_LR} \"\n",
163
+ " f\"--num_workers {NUM_WORKERS} \"\n",
164
+ " f\"--T_0 {T_0} \"\n",
165
+ " f\"--T_mult {T_MULT} \"\n",
166
+ " f\"--esm_model_name {ESM_MODEL} \"\n",
167
+ " f\"--gamma_neg {GAMMA_NEG} \"\n",
168
+ " f\"--gamma_pos {GAMMA_POS} \"\n",
169
+ " f\"--clip {CLIP} \"\n",
170
+ " f\"--use_lora {USE_LORA} \"\n",
171
+ " f\"--lora_rank {LORA_RANK}\"\n",
172
+ ")\n",
173
+ "\n",
174
+ "print(f\"Training Command: {training_command}\")"
175
+ ]
176
+ },
177
+ {
178
+ "cell_type": "code",
179
+ "execution_count": 9,
180
+ "metadata": {},
181
+ "outputs": [],
182
+ "source": [
183
+ "# 2. Configure Job\n",
184
+ "\n",
185
+ "job = command(\n",
186
+ " code=\"./src\",\n",
187
+ " command=training_command,\n",
188
+ " inputs={\n",
189
+ " \"dataset\": Input(\n",
190
+ " type=\"uri_folder\",\n",
191
+ " path=\"azureml:cafa6:3\"\n",
192
+ " )\n",
193
+ " },\n",
194
+ " environment=f\"{ENV_NAME}:{ENV_VERSION}\", \n",
195
+ " compute=\"FOR-CAFA-6\",\n",
196
+ " display_name=\"TaxonomyAwareESM_LoRA\",\n",
197
+ " experiment_name=\"taxonomy_aware_esm\"\n",
198
+ ")\n"
199
+ ]
200
+ },
201
+ {
202
+ "cell_type": "code",
203
+ "execution_count": 10,
204
+ "metadata": {},
205
+ "outputs": [
206
+ {
207
+ "name": "stderr",
208
+ "output_type": "stream",
209
+ "text": [
210
+ "\u001b[32mUploading src (9.53 MBs): 100%|##########| 9533825/9533825 [00:02<00:00, 3421392.45it/s] \n",
211
+ "\u001b[39m\n",
212
+ "\n",
213
+ "Use of {} for parameters is deprecated, instead use ${{}}.\n"
214
+ ]
215
+ },
216
+ {
217
+ "name": "stdout",
218
+ "output_type": "stream",
219
+ "text": [
220
+ "Job submitted. Studio URL: https://ml.azure.com/runs/stoic_bone_p2s7v1g7zg?wsid=/subscriptions/c39e1d7a-fa06-4185-94ce-18b724cac3d8/resourcegroups/js_p_j/workspaces/azure_ML&tid=3569a77b-5841-417b-b138-12b5fe698c9c\n"
221
+ ]
222
+ }
223
+ ],
224
+ "source": [
225
+ "# 3. Submit Job\n",
226
+ "returned_job = ml_client.create_or_update(job)\n",
227
+ "print(f\"Job submitted. Studio URL: {returned_job.studio_url}\")"
228
+ ]
229
+ }
230
+ ],
231
+ "metadata": {
232
+ "kernelspec": {
233
+ "display_name": "Python 3",
234
+ "language": "python",
235
+ "name": "python3"
236
+ },
237
+ "language_info": {
238
+ "codemirror_mode": {
239
+ "name": "ipython",
240
+ "version": 3
241
+ },
242
+ "file_extension": ".py",
243
+ "mimetype": "text/x-python",
244
+ "name": "python",
245
+ "nbconvert_exporter": "python",
246
+ "pygments_lexer": "ipython3",
247
+ "version": "3.11.8"
248
+ }
249
+ },
250
+ "nbformat": 4,
251
+ "nbformat_minor": 2
252
+ }
dataset/IA.tsv ADDED
The diff for this file is too large to render. See raw diff
 
dataset/go_info/go-basic.obo ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca48860e6fbcf0ab65a51a9a275b6d184c3a36dd80cd02b1f193e03fcfd4d00b
3
+ size 31350074
dataset/go_info/go_ancestor_matrix.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a0d637dda21ffd9de9c490cf5bda3a6912807f016907107acf0a797e5fb530b
3
+ size 467994
dataset/go_info/go_term_mappings.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:245da7d1433c983582ee626b4093a3b3a75af03c1df5be4683278b4690ce5cd0
3
+ size 988471
dataset/learning_superset/large_learning_superset.fasta ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:664b3ff0a4054feb10ba308384724f3c99e63061caa075e55a0cd89e75fa08a1
3
+ size 75178768
dataset/learning_superset/large_learning_superset_term.tsv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f196296d2b1db9ce194b6f3a3c874e7eb5486464882a94f06f2be6bcdfd1b8a
3
+ size 16676828
dataset/taxon_embedding/species_vectors.tsv ADDED
The diff for this file is too large to render. See raw diff
 
dataset/taxon_embedding/vocab/class_vocab.json ADDED
@@ -0,0 +1,275 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<UNK>": 0,
3
+ "Acidimicrobiia": 1,
4
+ "Acidithiobacillia": 2,
5
+ "Aconoidasida": 3,
6
+ "Actinomycetes": 4,
7
+ "Actinopteri": 5,
8
+ "Agaricomycetes": 6,
9
+ "Alphaproteobacteria": 7,
10
+ "Alsuviricetes": 8,
11
+ "Amabiliviricetes": 9,
12
+ "Amphibia": 10,
13
+ "Anaerolineae": 11,
14
+ "Anthocerotopsida": 12,
15
+ "Anthozoa": 13,
16
+ "Appendicularia": 14,
17
+ "Aquificia": 15,
18
+ "Arachnida": 16,
19
+ "Archaeoglobi": 17,
20
+ "Arfiviricetes": 18,
21
+ "Armophorea": 19,
22
+ "Ascidiacea": 20,
23
+ "Asteroidea": 21,
24
+ "Aves": 22,
25
+ "Bacillariophyceae": 23,
26
+ "Bacilli": 24,
27
+ "Bacteriovoracia": 25,
28
+ "Bacteroidia": 26,
29
+ "Bangiophyceae": 27,
30
+ "Bdellovibrionia": 28,
31
+ "Belvinaviricetes": 29,
32
+ "Betaproteobacteria": 30,
33
+ "Bigyra": 31,
34
+ "Bivalvia": 32,
35
+ "Blastocladiomycetes": 33,
36
+ "Branchiopoda": 34,
37
+ "Bryopsida": 35,
38
+ "Bunyaviricetes": 36,
39
+ "Candidatus Brocadiia": 37,
40
+ "Candidatus Cloacimonadia": 38,
41
+ "Candidatus Korarchaeia": 39,
42
+ "Candidatus Nanoarchaeia": 40,
43
+ "Candidatus Odinarchaeia": 41,
44
+ "Cardeaviricetes": 42,
45
+ "Caudoviricetes": 43,
46
+ "Cephalopoda": 44,
47
+ "Cestoda": 45,
48
+ "Charophyceae": 46,
49
+ "Chilopoda": 47,
50
+ "Chitinophagia": 48,
51
+ "Chlamydiia": 49,
52
+ "Chlorarachniophyceae": 50,
53
+ "Chlorobiia": 51,
54
+ "Chlorodendrophyceae": 52,
55
+ "Chloroflexia": 53,
56
+ "Chlorokybophyceae": 54,
57
+ "Chlorophyceae": 55,
58
+ "Choanoflagellata": 56,
59
+ "Chondrichthyes": 57,
60
+ "Chromadorea": 58,
61
+ "Chrymotiviricetes": 59,
62
+ "Chrysiogenia": 60,
63
+ "Chrysophyceae": 61,
64
+ "Chthonomonadia": 62,
65
+ "Chytridiomycetes": 63,
66
+ "Cladistia": 64,
67
+ "Clitellata": 65,
68
+ "Clostridia": 66,
69
+ "Coleochaetophyceae": 67,
70
+ "Collembola": 68,
71
+ "Conoidasida": 69,
72
+ "Coprothermobacteria": 70,
73
+ "Coriobacteriia": 71,
74
+ "Coscinodiscophyceae": 72,
75
+ "Cryptophyceae": 73,
76
+ "Cubozoa": 74,
77
+ "Cyanophyceae": 75,
78
+ "Cycadopsida": 76,
79
+ "Cytophagia": 77,
80
+ "Deferribacteres": 78,
81
+ "Dehalococcoidia": 79,
82
+ "Deinococci": 80,
83
+ "Demospongiae": 81,
84
+ "Desulfarculia": 82,
85
+ "Desulfobacteria": 83,
86
+ "Desulfobulbia": 84,
87
+ "Desulfovibrionia": 85,
88
+ "Desulfuromonadia": 86,
89
+ "Dictyoglomia": 87,
90
+ "Dinophyceae": 88,
91
+ "Dipodascomycetes": 89,
92
+ "Dothideomycetes": 90,
93
+ "Duplopiviricetes": 91,
94
+ "Echinamoebida": 92,
95
+ "Echinoidea": 93,
96
+ "Elardia": 94,
97
+ "Elusimicrobia": 95,
98
+ "Endomicrobiia": 96,
99
+ "Enoplea": 97,
100
+ "Enteropneusta": 98,
101
+ "Epsilonproteobacteria": 99,
102
+ "Erysipelotrichia": 100,
103
+ "Euglenida": 101,
104
+ "Eumycetozoa": 102,
105
+ "Eurotatoria": 103,
106
+ "Eurotiomycetes": 104,
107
+ "Eutardigrada": 105,
108
+ "Faserviricetes": 106,
109
+ "Fibrobacteria": 107,
110
+ "Filasterea": 108,
111
+ "Flasuviricetes": 109,
112
+ "Flavobacteriia": 110,
113
+ "Florideophyceae": 111,
114
+ "Fusobacteriia": 112,
115
+ "Gammaproteobacteria": 113,
116
+ "Gastropoda": 114,
117
+ "Gemmatimonadia": 115,
118
+ "Ginkgoopsida": 116,
119
+ "Glaucocystophyceae": 117,
120
+ "Glomeromycetes": 118,
121
+ "Gnetopsida": 119,
122
+ "Gymnolaemata": 120,
123
+ "Halobacteria": 121,
124
+ "Haplomitriopsida": 122,
125
+ "Harpellomycetes": 123,
126
+ "Herviviricetes": 124,
127
+ "Heterotrichea": 125,
128
+ "Hexanauplia": 126,
129
+ "Holothuroidea": 127,
130
+ "Homoscleromorpha": 128,
131
+ "Howeltoviricetes": 129,
132
+ "Huolimaviricetes": 130,
133
+ "Hydrogenophilia": 131,
134
+ "Hydrozoa": 132,
135
+ "Hyperoartia": 133,
136
+ "Ignavibacteria": 134,
137
+ "Imbricatea": 135,
138
+ "Insecta": 136,
139
+ "Insthoviricetes": 137,
140
+ "Jungermanniopsida": 138,
141
+ "Karyorelictea": 139,
142
+ "Kinetoplastea": 140,
143
+ "Klebsormidiophyceae": 141,
144
+ "Lecanoromycetes": 142,
145
+ "Leotiomycetes": 143,
146
+ "Lepidosauria": 144,
147
+ "Leptocardii": 145,
148
+ "Leviviricetes": 146,
149
+ "Lingulata": 147,
150
+ "Lipomycetes": 148,
151
+ "Litostomatea": 149,
152
+ "Lycopodiopsida": 150,
153
+ "Magnetococcia": 151,
154
+ "Magnoliopsida": 152,
155
+ "Magsaviricetes": 153,
156
+ "Malacostraca": 154,
157
+ "Malasseziomycetes": 155,
158
+ "Malgrandaviricetes": 156,
159
+ "Mamiellophyceae": 157,
160
+ "Mammalia": 158,
161
+ "Marchantiopsida": 159,
162
+ "Mediophyceae": 160,
163
+ "Megaviricetes": 161,
164
+ "Merostomata": 162,
165
+ "Mesostigmatophyceae": 163,
166
+ "Methanobacteria": 164,
167
+ "Methanococci": 165,
168
+ "Methanomicrobia": 166,
169
+ "Methanopyri": 167,
170
+ "Methylacidiphilae": 168,
171
+ "Miaviricetes": 169,
172
+ "Microbotryomycetes": 170,
173
+ "Milneviricetes": 171,
174
+ "Mollicutes": 172,
175
+ "Monjiviricetes": 173,
176
+ "Monoblepharidomycetes": 174,
177
+ "Mortierellomycetes": 175,
178
+ "Mucoromycetes": 176,
179
+ "Myxini": 177,
180
+ "Myxococcia": 178,
181
+ "Naldaviricetes": 179,
182
+ "Negativicutes": 180,
183
+ "Neocallimastigomycetes": 181,
184
+ "Nephroselmidophyceae": 182,
185
+ "Nitrososphaeria": 183,
186
+ "Nitrospinia": 184,
187
+ "Nitrospiria": 185,
188
+ "Oligohymenophorea": 186,
189
+ "Olisthodiscophyceae": 187,
190
+ "Opitutia": 188,
191
+ "Orbiliomycetes": 189,
192
+ "Ostracoda": 190,
193
+ "Palaeacanthocephala": 191,
194
+ "Papovaviricetes": 192,
195
+ "Pavlovophyceae": 193,
196
+ "Pedosphaerae": 194,
197
+ "Peronosporomycetes": 195,
198
+ "Pezizomycetes": 196,
199
+ "Phaeophyceae": 197,
200
+ "Pharingeaviricetes": 198,
201
+ "Phytomyxea": 199,
202
+ "Pichiomycetes": 200,
203
+ "Pilidiophora": 201,
204
+ "Pinopsida": 202,
205
+ "Pisoniviricetes": 203,
206
+ "Planctomycetia": 204,
207
+ "Pneumocystomycetes": 205,
208
+ "Pokkesviricetes": 206,
209
+ "Polychaeta": 207,
210
+ "Polyplacophora": 208,
211
+ "Polypodiopsida": 209,
212
+ "Polytrichopsida": 210,
213
+ "Priapulimorpha": 211,
214
+ "Promethearchaeia": 212,
215
+ "Pucciniomycetes": 213,
216
+ "Quintoviricetes": 214,
217
+ "Raphidophyceae": 215,
218
+ "Remipedia": 216,
219
+ "Repensiviricetes": 217,
220
+ "Resentoviricetes": 218,
221
+ "Revtraviricetes": 219,
222
+ "Rhabditophora": 220,
223
+ "Rhodellophyceae": 221,
224
+ "Rhodothermia": 222,
225
+ "Rubrobacteria": 223,
226
+ "Saccharomycetes": 224,
227
+ "Sagittoidea": 225,
228
+ "Saprolegniomycetes": 226,
229
+ "Saprospiria": 227,
230
+ "Schizosaccharomycetes": 228,
231
+ "Scyphozoa": 229,
232
+ "Sipuncula": 230,
233
+ "Sordariomycetes": 231,
234
+ "Sphagnopsida": 232,
235
+ "Sphingobacteriia": 233,
236
+ "Spirochaetia": 234,
237
+ "Spirotrichea": 235,
238
+ "Stelpaviricetes": 236,
239
+ "Synergistia": 237,
240
+ "Syntrophia": 238,
241
+ "Syntrophobacteria": 239,
242
+ "Takakiopsida": 240,
243
+ "Tectiliviricetes": 241,
244
+ "Tentaculata": 242,
245
+ "Terriglobia": 243,
246
+ "Thecostraca": 244,
247
+ "Theionarchaea": 245,
248
+ "Thermococci": 246,
249
+ "Thermodesulfobacteria": 247,
250
+ "Thermodesulfovibrionia": 248,
251
+ "Thermoleophilia": 249,
252
+ "Thermomicrobia": 250,
253
+ "Thermoplasmata": 251,
254
+ "Thermoprotei": 252,
255
+ "Thermosulfidibacteria": 253,
256
+ "Thermotogae": 254,
257
+ "Tissierellia": 255,
258
+ "Tokiviricetes": 256,
259
+ "Tolucaviricetes": 257,
260
+ "Trebouxiophyceae": 258,
261
+ "Trematoda": 259,
262
+ "Tremellomycetes": 260,
263
+ "Trigonopsidomycetes": 261,
264
+ "Udeonychophora": 262,
265
+ "Ulvophyceae": 263,
266
+ "Umbelopsidomycetes": 264,
267
+ "Uniplacotomia": 265,
268
+ "Ustilaginomycetes": 266,
269
+ "Verrucomicrobiia": 267,
270
+ "Vidaverviricetes": 268,
271
+ "Virophaviricetes": 269,
272
+ "Wallemiomycetes": 270,
273
+ "Xanthophyceae": 271,
274
+ "Zygnematophyceae": 272
275
+ }
dataset/taxon_embedding/vocab/family_vocab.json ADDED
@@ -0,0 +1,1994 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<UNK>": 0,
3
+ "Acanthaceae": 1,
4
+ "Acanthamoebidae": 2,
5
+ "Acanthasteridae": 3,
6
+ "Acaridae": 4,
7
+ "Acaryochloridaceae": 5,
8
+ "Accipitridae": 6,
9
+ "Acestrorhamphidae": 7,
10
+ "Acetivibrionaceae": 8,
11
+ "Acetobacteraceae": 9,
12
+ "Achatinidae": 10,
13
+ "Achatocarpaceae": 11,
14
+ "Achlyaceae": 12,
15
+ "Acholeplasmataceae": 13,
16
+ "Acidaminococcaceae": 14,
17
+ "Acidilobaceae": 15,
18
+ "Acidimicrobiaceae": 16,
19
+ "Acidithiobacillaceae": 17,
20
+ "Acidobacteriaceae": 18,
21
+ "Acidocellaceae": 19,
22
+ "Acidothermaceae": 20,
23
+ "Acinetosporaceae": 21,
24
+ "Acipenseridae": 22,
25
+ "Ackermannviridae": 23,
26
+ "Acoraceae": 24,
27
+ "Acrididae": 25,
28
+ "Acrobatidae": 26,
29
+ "Acrochordidae": 27,
30
+ "Acroporidae": 28,
31
+ "Actinidiaceae": 29,
32
+ "Actiniidae": 30,
33
+ "Actinomycetaceae": 31,
34
+ "Actinopodidae": 32,
35
+ "Actinopolysporaceae": 33,
36
+ "Actinostolidae": 34,
37
+ "Acytosteliaceae": 35,
38
+ "Adelanthaceae": 36,
39
+ "Adenoviridae": 37,
40
+ "Adoxaceae": 38,
41
+ "Adrianichthyidae": 39,
42
+ "Adustoporiaceae": 40,
43
+ "Aequoreidae": 41,
44
+ "Aerococcaceae": 42,
45
+ "Aeromonadaceae": 43,
46
+ "Aeshnidae": 44,
47
+ "Afifellaceae": 45,
48
+ "Agamidae": 46,
49
+ "Agaraceae": 47,
50
+ "Agaricaceae": 48,
51
+ "Agelenidae": 49,
52
+ "Agonidae": 50,
53
+ "Ailuridae": 51,
54
+ "Aiptasiidae": 52,
55
+ "Aizoaceae": 53,
56
+ "Ajellomycetaceae": 54,
57
+ "Akaniaceae": 55,
58
+ "Akkermansiaceae": 56,
59
+ "Alariaceae": 57,
60
+ "Alatinidae": 58,
61
+ "Alcaligenaceae": 59,
62
+ "Alcanivoracaceae": 60,
63
+ "Alcedinidae": 61,
64
+ "Alcidae": 62,
65
+ "Alcyoniidae": 63,
66
+ "Aleyrodidae": 64,
67
+ "Aliciidae": 65,
68
+ "Alicyclobacillaceae": 66,
69
+ "Alismataceae": 67,
70
+ "Alligatoridae": 68,
71
+ "Alloherpesviridae": 69,
72
+ "Allomimiviridae": 70,
73
+ "Alopiidae": 71,
74
+ "Alphaflexiviridae": 72,
75
+ "Alphasatellitidae": 73,
76
+ "Alphatetraviridae": 74,
77
+ "Alteromonadaceae": 75,
78
+ "Altingiaceae": 76,
79
+ "Alydidae": 77,
80
+ "Alytidae": 78,
81
+ "Amanitaceae": 79,
82
+ "Amaranthaceae": 80,
83
+ "Amaryllidaceae": 81,
84
+ "Amborellaceae": 82,
85
+ "Ambystomatidae": 83,
86
+ "Amiidae": 84,
87
+ "Aminobacteriaceae": 85,
88
+ "Amoebidae": 86,
89
+ "Amoebophilaceae": 87,
90
+ "Amorphothecaceae": 88,
91
+ "Amphidiniaceae": 89,
92
+ "Amphiumidae": 90,
93
+ "Ampulicidae": 91,
94
+ "Ampullariidae": 92,
95
+ "Ampullaviridae": 93,
96
+ "Amylocorticiaceae": 94,
97
+ "Anacampserotaceae": 95,
98
+ "Anacardiaceae": 96,
99
+ "Anaerolineaceae": 97,
100
+ "Anaeromyxobacteraceae": 98,
101
+ "Anaeroplasmataceae": 99,
102
+ "Anaerotignaceae": 100,
103
+ "Anaplasmataceae": 101,
104
+ "Anarhichadidae": 102,
105
+ "Anatidae": 103,
106
+ "Ancorinidae": 104,
107
+ "Ancylostomatidae": 105,
108
+ "Andersonviridae": 106,
109
+ "Andrenidae": 107,
110
+ "Anelloviridae": 108,
111
+ "Anemiaceae": 109,
112
+ "Aneuraceae": 110,
113
+ "Anguillidae": 111,
114
+ "Anhimidae": 112,
115
+ "Anhingidae": 113,
116
+ "Aniliidae": 114,
117
+ "Anisakidae": 115,
118
+ "Annonaceae": 116,
119
+ "Anomaluridae": 117,
120
+ "Anoplocephalidae": 118,
121
+ "Anoplogasteridae": 119,
122
+ "Anoplopomatidae": 120,
123
+ "Anoxybacillaceae": 121,
124
+ "Anseranatidae": 122,
125
+ "Anthocerotaceae": 123,
126
+ "Anthomyiidae": 124,
127
+ "Antilocapridae": 125,
128
+ "Aotidae": 126,
129
+ "Aphanizomenonaceae": 127,
130
+ "Aphanothecaceae": 128,
131
+ "Aphelenchoididae": 129,
132
+ "Aphididae": 130,
133
+ "Apiaceae": 131,
134
+ "Apidae": 132,
135
+ "Apiosporaceae": 133,
136
+ "Aplodontiidae": 134,
137
+ "Aplysiidae": 135,
138
+ "Aplysinidae": 136,
139
+ "Apocynaceae": 137,
140
+ "Apodidae": 138,
141
+ "Apogonidae": 139,
142
+ "Apterygidae": 140,
143
+ "Aquaspirillaceae": 141,
144
+ "Aquificaceae": 142,
145
+ "Aquifoliaceae": 143,
146
+ "Araceae": 144,
147
+ "Araliaceae": 145,
148
+ "Araneidae": 146,
149
+ "Araucariaceae": 147,
150
+ "Arbaciidae": 148,
151
+ "Archaeoglobaceae": 149,
152
+ "Archangiaceae": 150,
153
+ "Arcidae": 151,
154
+ "Arcobacteraceae": 152,
155
+ "Ardeidae": 153,
156
+ "Arecaceae": 154,
157
+ "Arenaviridae": 155,
158
+ "Arenicolidae": 156,
159
+ "Argasidae": 157,
160
+ "Arhynchobatidae": 158,
161
+ "Aristolochiaceae": 159,
162
+ "Armadillidiidae": 160,
163
+ "Artamidae": 161,
164
+ "Artedidraconidae": 162,
165
+ "Artemiidae": 163,
166
+ "Arteriviridae": 164,
167
+ "Arthrodermataceae": 165,
168
+ "Asaraceae": 166,
169
+ "Ascaphidae": 167,
170
+ "Ascarididae": 168,
171
+ "Ascidiidae": 169,
172
+ "Ascobolaceae": 170,
173
+ "Ascoviridae": 171,
174
+ "Asellidae": 172,
175
+ "Asfarviridae": 173,
176
+ "Asilidae": 174,
177
+ "Asparagaceae": 175,
178
+ "Aspergillaceae": 176,
179
+ "Asphodelaceae": 177,
180
+ "Aspiviridae": 178,
181
+ "Aspleniaceae": 179,
182
+ "Astacidae": 180,
183
+ "Asteraceae": 181,
184
+ "Asteriidae": 182,
185
+ "Asterinidae": 183,
186
+ "Astroviridae": 184,
187
+ "Atelidae": 185,
188
+ "Atheliaceae": 186,
189
+ "Atherinidae": 187,
190
+ "Atherinopsidae": 188,
191
+ "Atopobiaceae": 189,
192
+ "Aurantimonadaceae": 190,
193
+ "Auriculariaceae": 191,
194
+ "Austrophasmatidae": 192,
195
+ "Autonotataviridae": 193,
196
+ "Autoscriptoviridae": 194,
197
+ "Autosignataviridae": 195,
198
+ "Autotranscriptaviridae": 196,
199
+ "Axinellidae": 197,
200
+ "Aytoniaceae": 198,
201
+ "Azonexaceae": 199,
202
+ "Azospirillaceae": 200,
203
+ "Babesiidae": 201,
204
+ "Bacillaceae": 202,
205
+ "Bacilladnaviridae": 203,
206
+ "Bacillales Family X. Incertae Sedis": 204,
207
+ "Bacillariaceae": 205,
208
+ "Bacteriovoracaceae": 206,
209
+ "Bacteroidaceae": 207,
210
+ "Baculoviridae": 208,
211
+ "Bagridae": 209,
212
+ "Balaenidae": 210,
213
+ "Balaenopteridae": 211,
214
+ "Balanidae": 212,
215
+ "Balsaminaceae": 213,
216
+ "Bangiaceae": 214,
217
+ "Barnaviridae": 215,
218
+ "Bartonellaceae": 216,
219
+ "Barychelidae": 217,
220
+ "Basellaceae": 218,
221
+ "Bataceae": 219,
222
+ "Bathycoccaceae": 220,
223
+ "Bathydraconidae": 221,
224
+ "Bathyergidae": 222,
225
+ "Batrachoididae": 223,
226
+ "Begoniaceae": 224,
227
+ "Beijerinckiaceae": 225,
228
+ "Benyviridae": 226,
229
+ "Berberidaceae": 227,
230
+ "Betaflexiviridae": 228,
231
+ "Betulaceae": 229,
232
+ "Beutenbergiaceae": 230,
233
+ "Bicaudaviridae": 231,
234
+ "Bifidobacteriaceae": 232,
235
+ "Bignoniaceae": 233,
236
+ "Bionectriaceae": 234,
237
+ "Biphyllidae": 235,
238
+ "Birnaviridae": 236,
239
+ "Bithyniidae": 237,
240
+ "Bixaceae": 238,
241
+ "Blaberidae": 239,
242
+ "Blastochloridaceae": 240,
243
+ "Blastocladiaceae": 241,
244
+ "Blastocystidae": 242,
245
+ "Blattabacteriaceae": 243,
246
+ "Blattellidae": 244,
247
+ "Blattidae": 245,
248
+ "Blechnaceae": 246,
249
+ "Blenniidae": 247,
250
+ "Blepharismidae": 248,
251
+ "Boidae": 249,
252
+ "Boletaceae": 250,
253
+ "Bolinopsidae": 251,
254
+ "Bolyeridae": 252,
255
+ "Bombinatoridae": 253,
256
+ "Bombycidae": 254,
257
+ "Bondarzewiaceae": 255,
258
+ "Boraginaceae": 256,
259
+ "Bornaviridae": 257,
260
+ "Borreliaceae": 258,
261
+ "Boseaceae": 259,
262
+ "Botourmiaviridae": 260,
263
+ "Botryobasidiaceae": 261,
264
+ "Botryosphaeriaceae": 262,
265
+ "Bovichtidae": 263,
266
+ "Bovidae": 264,
267
+ "Brachionidae": 265,
268
+ "Brachycephalidae": 266,
269
+ "Brachyspiraceae": 267,
270
+ "Braconidae": 268,
271
+ "Bradypodidae": 269,
272
+ "Branchiostomatidae": 270,
273
+ "Brassicaceae": 271,
274
+ "Brevibacteriaceae": 272,
275
+ "Bromeliaceae": 273,
276
+ "Bromoviridae": 274,
277
+ "Brucellaceae": 275,
278
+ "Bruguierivoracaceae": 276,
279
+ "Bruniaceae": 277,
280
+ "Bryaceae": 278,
281
+ "Bryopsidaceae": 279,
282
+ "Buccinidae": 280,
283
+ "Bufonidae": 281,
284
+ "Bugulidae": 282,
285
+ "Buprestidae": 283,
286
+ "Burkholderiaceae": 284,
287
+ "Burseraceae": 285,
288
+ "Buthidae": 286,
289
+ "Butomaceae": 287,
290
+ "Buxaceae": 288,
291
+ "Byblidaceae": 289,
292
+ "Cabombaceae": 290,
293
+ "Cactaceae": 291,
294
+ "Caenolestidae": 292,
295
+ "Cafeteriaceae": 293,
296
+ "Calanidae": 294,
297
+ "Caldicellulosiruptoraceae": 295,
298
+ "Calditerrivibrionaceae": 296,
299
+ "Caliciviridae": 297,
300
+ "Callichthyidae": 298,
301
+ "Calliphoridae": 299,
302
+ "Callistosporiaceae": 300,
303
+ "Callithamniaceae": 301,
304
+ "Callorhinchidae": 302,
305
+ "Calycanthaceae": 303,
306
+ "Calyptrosphaeraceae": 304,
307
+ "Cambaridae": 305,
308
+ "Camelidae": 306,
309
+ "Caminicellaceae": 307,
310
+ "Campanulaceae": 308,
311
+ "Camptobasidiaceae": 309,
312
+ "Campylobacteraceae": 310,
313
+ "Cancridae": 311,
314
+ "Candidatus Brocadiaceae": 312,
315
+ "Candidatus Cenarchaeaceae": 313,
316
+ "Candidatus Cloacimonadaceae": 314,
317
+ "Candidatus Desulforudaceae": 315,
318
+ "Candidatus Korarchaeaceae": 316,
319
+ "Candidatus Korobacteraceae": 317,
320
+ "Candidatus Methanophagaceae": 318,
321
+ "Candidatus Odinarchaeaceae": 319,
322
+ "Candidatus Pelagibacteraceae": 320,
323
+ "Candidatus Pseudothioglobaceae": 321,
324
+ "Candidatus Thermobaculaceae": 322,
325
+ "Canellaceae": 323,
326
+ "Canidae": 324,
327
+ "Cannabaceae": 325,
328
+ "Cannaceae": 326,
329
+ "Capnodiaceae": 327,
330
+ "Capparaceae": 328,
331
+ "Caprifoliaceae": 329,
332
+ "Capromyidae": 330,
333
+ "Carabidae": 331,
334
+ "Caraboctonidae": 332,
335
+ "Carangidae": 333,
336
+ "Carcharhinidae": 334,
337
+ "Carcinidae": 335,
338
+ "Cardinalidae": 336,
339
+ "Cardiobacteriaceae": 337,
340
+ "Carettochelyidae": 338,
341
+ "Caricaceae": 339,
342
+ "Carnobacteriaceae": 340,
343
+ "Carpoglyphidae": 341,
344
+ "Carybdeidae": 342,
345
+ "Caryophanaceae": 343,
346
+ "Caryophyllaceae": 344,
347
+ "Castoridae": 345,
348
+ "Casuariidae": 346,
349
+ "Casuarinaceae": 347,
350
+ "Catenulisporaceae": 348,
351
+ "Cathartidae": 349,
352
+ "Catostomidae": 350,
353
+ "Caudinidae": 351,
354
+ "Caulimoviridae": 352,
355
+ "Caulobacteraceae": 353,
356
+ "Cavenderiaceae": 354,
357
+ "Caviidae": 355,
358
+ "Cebidae": 356,
359
+ "Cecidomyiidae": 357,
360
+ "Celastraceae": 358,
361
+ "Cellulomonadaceae": 359,
362
+ "Cellvibrionaceae": 360,
363
+ "Centrarchidae": 361,
364
+ "Centritractaceae": 362,
365
+ "Centropomidae": 363,
366
+ "Cephalotaceae": 364,
367
+ "Cerambycidae": 365,
368
+ "Ceramiaceae": 366,
369
+ "Ceratobasidiaceae": 367,
370
+ "Ceratocystidaceae": 368,
371
+ "Ceratodontidae": 369,
372
+ "Ceratophryidae": 370,
373
+ "Ceratophyllaceae": 371,
374
+ "Ceratopogonidae": 372,
375
+ "Cercidiphyllaceae": 373,
376
+ "Cercopithecidae": 374,
377
+ "Cerrenaceae": 375,
378
+ "Cervantesiaceae": 376,
379
+ "Cervidae": 377,
380
+ "Chactidae": 378,
381
+ "Chaerilidae": 379,
382
+ "Chaetodontidae": 380,
383
+ "Chaetomiaceae": 381,
384
+ "Chaetophoraceae": 382,
385
+ "Chaetopteridae": 383,
386
+ "Chaetosphaeriaceae": 384,
387
+ "Chaetosphaeridiaceae": 385,
388
+ "Chalinidae": 386,
389
+ "Chamaesiphonaceae": 387,
390
+ "Champiaceae": 388,
391
+ "Channichthyidae": 389,
392
+ "Channidae": 390,
393
+ "Characeae": 391,
394
+ "Charadriidae": 392,
395
+ "Chattonellaceae": 393,
396
+ "Cheiracanthiidae": 394,
397
+ "Cheirogaleidae": 395,
398
+ "Chelidae": 396,
399
+ "Cheloniidae": 397,
400
+ "Chelydridae": 398,
401
+ "Chenopodiaceae": 399,
402
+ "Chimaeridae": 400,
403
+ "Chimalliviridae": 401,
404
+ "Chinchillidae": 402,
405
+ "Chirodropidae": 403,
406
+ "Chironomidae": 404,
407
+ "Chiropsalmidae": 405,
408
+ "Chiroteuthidae": 406,
409
+ "Chitinophagaceae": 407,
410
+ "Chitonidae": 408,
411
+ "Chlamydiaceae": 409,
412
+ "Chlamydomonadaceae": 410,
413
+ "Chlamyphoridae": 411,
414
+ "Chloranthaceae": 412,
415
+ "Chlorellaceae": 413,
416
+ "Chlorobiaceae": 414,
417
+ "Chlorodendraceae": 415,
418
+ "Chloroflexaceae": 416,
419
+ "Chlorogloeopsidaceae": 417,
420
+ "Chloroherpetonaceae": 418,
421
+ "Chlorokybaceae": 419,
422
+ "Chlorophthalmidae": 420,
423
+ "Choanephoraceae": 421,
424
+ "Chondrillidae": 422,
425
+ "Chroicopteridae": 423,
426
+ "Chromatiaceae": 424,
427
+ "Chromobacteriaceae": 425,
428
+ "Chromulinaceae": 426,
429
+ "Chroomonadaceae": 427,
430
+ "Chrysiogenaceae": 428,
431
+ "Chrysochloridae": 429,
432
+ "Chrysochromulinaceae": 430,
433
+ "Chrysomelidae": 431,
434
+ "Chrysoviridae": 432,
435
+ "Chthonomonadaceae": 433,
436
+ "Cibotiaceae": 434,
437
+ "Cicadellidae": 435,
438
+ "Cicadidae": 436,
439
+ "Cichlidae": 437,
440
+ "Ciconiidae": 438,
441
+ "Cimicidae": 439,
442
+ "Cionidae": 440,
443
+ "Circoviridae": 441,
444
+ "Cirolanidae": 442,
445
+ "Cistaceae": 443,
446
+ "Cistugidae": 444,
447
+ "Cladiellidae": 445,
448
+ "Cladoniaceae": 446,
449
+ "Cladophoraceae": 447,
450
+ "Cladosporiaceae": 448,
451
+ "Clariidae": 449,
452
+ "Clausiliidae": 450,
453
+ "Clavicipitaceae": 451,
454
+ "Clavulariidae": 452,
455
+ "Clionaidae": 453,
456
+ "Clitocybaceae": 454,
457
+ "Closteroviridae": 455,
458
+ "Clostridiaceae": 456,
459
+ "Clostridiales Family XVII. Incertae Sedis": 457,
460
+ "Clupeidae": 458,
461
+ "Clusiaceae": 459,
462
+ "Clypeasteridae": 460,
463
+ "Clytiidae": 461,
464
+ "Cobitidae": 462,
465
+ "Coccinellidae": 463,
466
+ "Codiaceae": 464,
467
+ "Coelacanthidae": 465,
468
+ "Colchicaceae": 466,
469
+ "Coleochaetaceae": 467,
470
+ "Coleofasciculaceae": 468,
471
+ "Coliidae": 469,
472
+ "Colingsworthviridae": 470,
473
+ "Colletidae": 471,
474
+ "Colubridae": 472,
475
+ "Columbidae": 473,
476
+ "Colwelliaceae": 474,
477
+ "Comamonadaceae": 475,
478
+ "Combretaceae": 476,
479
+ "Condylostomatidae": 477,
480
+ "Conexibacteraceae": 478,
481
+ "Congridae": 479,
482
+ "Conidae": 480,
483
+ "Conocephalaceae": 481,
484
+ "Convolvulaceae": 482,
485
+ "Coprobacillaceae": 483,
486
+ "Coprothermobacteraceae": 484,
487
+ "Coraciidae": 485,
488
+ "Coraliomargaritaceae": 486,
489
+ "Corallinaceae": 487,
490
+ "Corcoracidae": 488,
491
+ "Cordycipitaceae": 489,
492
+ "Corellidae": 490,
493
+ "Coriariaceae": 491,
494
+ "Coriobacteriaceae": 492,
495
+ "Cornaceae": 493,
496
+ "Coronaviridae": 494,
497
+ "Corticiaceae": 495,
498
+ "Corticoviridae": 496,
499
+ "Cortinariaceae": 497,
500
+ "Corvidae": 498,
501
+ "Corydiidae": 499,
502
+ "Corynebacteriaceae": 500,
503
+ "Corynesporascaceae": 501,
504
+ "Corynocarpaceae": 502,
505
+ "Costaceae": 503,
506
+ "Cotingidae": 504,
507
+ "Cottidae": 505,
508
+ "Coxiellaceae": 506,
509
+ "Crabronidae": 507,
510
+ "Cracidae": 508,
511
+ "Crambidae": 509,
512
+ "Crassulaceae": 510,
513
+ "Cricetidae": 511,
514
+ "Crocodylidae": 512,
515
+ "Crotophagidae": 513,
516
+ "Cryphonectriaceae": 514,
517
+ "Crypthecodiniaceae": 515,
518
+ "Cryptocercidae": 516,
519
+ "Cryptococcaceae": 517,
520
+ "Cryptopidae": 518,
521
+ "Cryptosporidiidae": 519,
522
+ "Ctenidae": 520,
523
+ "Ctenodactylidae": 521,
524
+ "Ctenomyidae": 522,
525
+ "Cuculidae": 523,
526
+ "Cucumariidae": 524,
527
+ "Cucurbitaceae": 525,
528
+ "Culicidae": 526,
529
+ "Cunninghamellaceae": 527,
530
+ "Cunoniaceae": 528,
531
+ "Cupressaceae": 529,
532
+ "Curculionidae": 530,
533
+ "Cyaneidae": 531,
534
+ "Cyanidiaceae": 532,
535
+ "Cyanophoraceae": 533,
536
+ "Cyanothecaceae": 534,
537
+ "Cyatheaceae": 535,
538
+ "Cycadaceae": 536,
539
+ "Cyclobacteriaceae": 537,
540
+ "Cyclopedidae": 538,
541
+ "Cyclopteridae": 539,
542
+ "Cylindrophiidae": 540,
543
+ "Cymatolegaceae": 541,
544
+ "Cynocephalidae": 542,
545
+ "Cyphellophoraceae": 543,
546
+ "Cypridinidae": 544,
547
+ "Cyprinidae": 545,
548
+ "Cyprinodontidae": 546,
549
+ "Cyrillaceae": 547,
550
+ "Cystoviridae": 548,
551
+ "Cytophagaceae": 549,
552
+ "Cytosporaceae": 550,
553
+ "Dactyloidae": 551,
554
+ "Dactylopiidae": 552,
555
+ "Dactylopteridae": 553,
556
+ "Danionidae": 554,
557
+ "Daphniidae": 555,
558
+ "Daphniphyllaceae": 556,
559
+ "Dasyatidae": 557,
560
+ "Dasycladaceae": 558,
561
+ "Dasypodidae": 559,
562
+ "Dasyproctidae": 560,
563
+ "Dasyuridae": 561,
564
+ "Datiscaceae": 562,
565
+ "Daubentoniidae": 563,
566
+ "Debaryomycetaceae": 564,
567
+ "Deferribacteraceae": 565,
568
+ "Dehalococcoidaceae": 566,
569
+ "Deinococcaceae": 567,
570
+ "Delphinidae": 568,
571
+ "Demerecviridae": 569,
572
+ "Dennstaedtiaceae": 570,
573
+ "Derbesiaceae": 571,
574
+ "Dermabacteraceae": 572,
575
+ "Dermateaceae": 573,
576
+ "Desmidiaceae": 574,
577
+ "Desulfarculaceae": 575,
578
+ "Desulfatibacillaceae": 576,
579
+ "Desulfitobacteriaceae": 577,
580
+ "Desulfobacteraceae": 578,
581
+ "Desulfocapsaceae": 579,
582
+ "Desulfococcaceae": 580,
583
+ "Desulfomicrobiaceae": 581,
584
+ "Desulfosudaceae": 582,
585
+ "Desulfotomaculaceae": 583,
586
+ "Desulfovibrionaceae": 584,
587
+ "Desulfurobacteriaceae": 585,
588
+ "Desulfurococcaceae": 586,
589
+ "Desulfuromonadaceae": 587,
590
+ "Devosiaceae": 588,
591
+ "Diaporthaceae": 589,
592
+ "Dichapetalaceae": 590,
593
+ "Dicistroviridae": 591,
594
+ "Dicksoniaceae": 592,
595
+ "Dicrocoeliidae": 593,
596
+ "Dicroglossidae": 594,
597
+ "Dictyoglomaceae": 595,
598
+ "Dictyosteliaceae": 596,
599
+ "Dictyotaceae": 597,
600
+ "Didelphidae": 598,
601
+ "Didiereaceae": 599,
602
+ "Didiniidae": 600,
603
+ "Didymellaceae": 601,
604
+ "Dietziaceae": 602,
605
+ "Diguetidae": 603,
606
+ "Dileptidae": 604,
607
+ "Dilleniaceae": 605,
608
+ "Dinomyidae": 606,
609
+ "Diomedeidae": 607,
610
+ "Dioscoreaceae": 608,
611
+ "Diphyllobothriidae": 609,
612
+ "Diphysciaceae": 610,
613
+ "Diploglossidae": 611,
614
+ "Dipodascaceae": 612,
615
+ "Dipodidae": 613,
616
+ "Dipsadidae": 614,
617
+ "Dipteridaceae": 615,
618
+ "Discosomidae": 616,
619
+ "Ditrichaceae": 617,
620
+ "Dothioraceae": 618,
621
+ "Dreissenidae": 619,
622
+ "Drepanopezizaceae": 620,
623
+ "Drexlerviridae": 621,
624
+ "Dromaiidae": 622,
625
+ "Droseraceae": 623,
626
+ "Drosophilidae": 624,
627
+ "Drosophyllaceae": 625,
628
+ "Dryopteridaceae": 626,
629
+ "Dugesiidae": 627,
630
+ "Dugongidae": 628,
631
+ "Dumortieraceae": 629,
632
+ "Dunaliellaceae": 630,
633
+ "Ebenaceae": 631,
634
+ "Echimyidae": 632,
635
+ "Echimyopodidae": 633,
636
+ "Echinidae": 634,
637
+ "Echinolampadidae": 635,
638
+ "Echinometridae": 636,
639
+ "Ectobiidae": 637,
640
+ "Ectocarpaceae": 638,
641
+ "Ectothiorhodospiraceae": 639,
642
+ "Edwardsiidae": 640,
643
+ "Eggerthellaceae": 641,
644
+ "Ehretiaceae": 642,
645
+ "Eimeriidae": 643,
646
+ "Elaeagnaceae": 644,
647
+ "Elaeocarpaceae": 645,
648
+ "Elapidae": 646,
649
+ "Elateridae": 647,
650
+ "Eleginopidae": 648,
651
+ "Eleotridae": 649,
652
+ "Elephantidae": 650,
653
+ "Eleutherodactylidae": 651,
654
+ "Elsinoaceae": 652,
655
+ "Elusimicrobiaceae": 653,
656
+ "Emballonuridae": 654,
657
+ "Empusidae": 655,
658
+ "Emydidae": 656,
659
+ "Enchytraeidae": 657,
660
+ "Endomicrobiaceae": 658,
661
+ "Entamoebidae": 659,
662
+ "Enterobacteriaceae": 660,
663
+ "Enterococcaceae": 661,
664
+ "Enterocytozoonidae": 662,
665
+ "Entolomataceae": 663,
666
+ "Entomoplasmataceae": 664,
667
+ "Ephedraceae": 665,
668
+ "Ephippidae": 666,
669
+ "Equidae": 667,
670
+ "Equisetaceae": 668,
671
+ "Erebidae": 669,
672
+ "Eremiaphilidae": 670,
673
+ "Erethizontidae": 671,
674
+ "Ericaceae": 672,
675
+ "Erinaceidae": 673,
676
+ "Erwiniaceae": 674,
677
+ "Erysipelotrichaceae": 675,
678
+ "Erysiphaceae": 676,
679
+ "Erythrobacteraceae": 677,
680
+ "Erythroxylaceae": 678,
681
+ "Eschrichtiidae": 679,
682
+ "Esocidae": 680,
683
+ "Estrildidae": 681,
684
+ "Eubacteriaceae": 682,
685
+ "Eublepharidae": 683,
686
+ "Eucommiaceae": 684,
687
+ "Euctenizidae": 685,
688
+ "Euglenaceae": 686,
689
+ "Eulophidae": 687,
690
+ "Euphausiidae": 688,
691
+ "Euphorbiaceae": 689,
692
+ "Eupleridae": 690,
693
+ "Euplotidae": 691,
694
+ "Euscorpiidae": 692,
695
+ "Exidiaceae": 693,
696
+ "Fabaceae": 694,
697
+ "Fagaceae": 695,
698
+ "Falconidae": 696,
699
+ "Fasciolidae": 697,
700
+ "Felidae": 698,
701
+ "Ferrimonadaceae": 699,
702
+ "Fervidobacteriaceae": 700,
703
+ "Fibrobacteraceae": 701,
704
+ "Fiersviridae": 702,
705
+ "Filifactoraceae": 703,
706
+ "Filistatidae": 704,
707
+ "Filobasidiaceae": 705,
708
+ "Filoviridae": 706,
709
+ "Fimoviridae": 707,
710
+ "Fissurellidae": 708,
711
+ "Flammeovirgaceae": 709,
712
+ "Flaviviridae": 710,
713
+ "Flavobacteriaceae": 711,
714
+ "Flexistipitaceae": 712,
715
+ "Fomitopsidaceae": 713,
716
+ "Formicidae": 714,
717
+ "Fouquieriaceae": 715,
718
+ "Francisellaceae": 716,
719
+ "Frankiaceae": 717,
720
+ "Fredfastierviridae": 718,
721
+ "Fringillidae": 719,
722
+ "Fucaceae": 720,
723
+ "Funariaceae": 721,
724
+ "Fundulidae": 722,
725
+ "Fungiidae": 723,
726
+ "Furipteridae": 724,
727
+ "Furnariidae": 725,
728
+ "Fuselloviridae": 726,
729
+ "Fusobacteriaceae": 727,
730
+ "Gadidae": 728,
731
+ "Galagidae": 729,
732
+ "Galdieriaceae": 730,
733
+ "Gallionellaceae": 731,
734
+ "Gammaflexiviridae": 732,
735
+ "Garryaceae": 733,
736
+ "Gasterosteidae": 734,
737
+ "Gastromyzontidae": 735,
738
+ "Gecarcinidae": 736,
739
+ "Gekkonidae": 737,
740
+ "Gelatinodiscaceae": 738,
741
+ "Gelatoporiaceae": 739,
742
+ "Gelsemiaceae": 740,
743
+ "Geminigeraceae": 741,
744
+ "Geminiviridae": 742,
745
+ "Geminocystaceae": 743,
746
+ "Gemmatimonadaceae": 744,
747
+ "Gentianaceae": 745,
748
+ "Geobacteraceae": 746,
749
+ "Geodermatophilaceae": 747,
750
+ "Geodiidae": 748,
751
+ "Geometridae": 749,
752
+ "Geomyidae": 750,
753
+ "Geoplanidae": 751,
754
+ "Geopsychrobacteraceae": 752,
755
+ "Geotrupidae": 753,
756
+ "Geovibrionaceae": 754,
757
+ "Geraniaceae": 755,
758
+ "Giardiaviridae": 756,
759
+ "Gigartinaceae": 757,
760
+ "Ginglymostomatidae": 758,
761
+ "Ginkgoaceae": 759,
762
+ "Giraffidae": 760,
763
+ "Glaucomidae": 761,
764
+ "Gleicheniaceae": 762,
765
+ "Gliridae": 763,
766
+ "Gloeobacteraceae": 764,
767
+ "Gloeophyllaceae": 765,
768
+ "Glomeraceae": 766,
769
+ "Glomerellaceae": 767,
770
+ "Glossinidae": 768,
771
+ "Glossiphoniidae": 769,
772
+ "Glyceridae": 770,
773
+ "Glycomycetaceae": 771,
774
+ "Glycyphagidae": 772,
775
+ "Gnetaceae": 773,
776
+ "Gobiidae": 774,
777
+ "Gobionidae": 775,
778
+ "Golfingiidae": 776,
779
+ "Gonapodyaceae": 777,
780
+ "Gonostomatidae": 778,
781
+ "Gonyleptidae": 779,
782
+ "Goodeniaceae": 780,
783
+ "Gordoniaceae": 781,
784
+ "Gottschalkiaceae": 782,
785
+ "Gracilariaceae": 783,
786
+ "Grapsidae": 784,
787
+ "Grifolaceae": 785,
788
+ "Grossulariaceae": 786,
789
+ "Gruidae": 787,
790
+ "Gryllidae": 788,
791
+ "Gryllotalpidae": 789,
792
+ "Gunneraceae": 790,
793
+ "Gymnotidae": 791,
794
+ "Hadrosauridae": 792,
795
+ "Haemadipsidae": 793,
796
+ "Haematococcaceae": 794,
797
+ "Haemopidae": 795,
798
+ "Hafniaceae": 796,
799
+ "Hahellaceae": 797,
800
+ "Halanaerobiaceae": 798,
801
+ "Halcuriidae": 799,
802
+ "Halichondriidae": 800,
803
+ "Halictidae": 801,
804
+ "Haliotidae": 802,
805
+ "Haliscomenobacteraceae": 803,
806
+ "Haloarculaceae": 804,
807
+ "Halobacteriaceae": 805,
808
+ "Halobacteriovoraceae": 806,
809
+ "Halobacteroidaceae": 807,
810
+ "Halococcaceae": 808,
811
+ "Haloferacaceae": 809,
812
+ "Halomonadaceae": 810,
813
+ "Halothecacae": 811,
814
+ "Halothermotrichaceae": 812,
815
+ "Halothiobacillaceae": 813,
816
+ "Halspiviridae": 814,
817
+ "Hamamelidaceae": 815,
818
+ "Hantaviridae": 816,
819
+ "Hapalosiphonaceae": 817,
820
+ "Haplomitriaceae": 818,
821
+ "Harpacticidae": 819,
822
+ "Harpagiferidae": 820,
823
+ "Harrimaniidae": 821,
824
+ "Helicidae": 822,
825
+ "Helicobacteraceae": 823,
826
+ "Heligmosomidae": 824,
827
+ "Heliobacteriaceae": 825,
828
+ "Helodermatidae": 826,
829
+ "Helotiaceae": 827,
830
+ "Hemiscorpiidae": 828,
831
+ "Hemiscylliidae": 829,
832
+ "Hemiselmidaceae": 830,
833
+ "Hepadnaviridae": 831,
834
+ "Hepeviridae": 832,
835
+ "Herelleviridae": 833,
836
+ "Hericiaceae": 834,
837
+ "Herpestidae": 835,
838
+ "Herpetosiphonaceae": 836,
839
+ "Herpotrichiellaceae": 837,
840
+ "Heterocapsaceae": 838,
841
+ "Heteroderidae": 839,
842
+ "Heterodontidae": 840,
843
+ "Heteromyidae": 841,
844
+ "Heteropneustidae": 842,
845
+ "Hexamitidae": 843,
846
+ "Hexathelidae": 844,
847
+ "Himantandraceae": 845,
848
+ "Hippopotamidae": 846,
849
+ "Hipposideridae": 847,
850
+ "Hirudinidae": 848,
851
+ "Histionidae": 849,
852
+ "Holocentridae": 850,
853
+ "Holosporaceae": 851,
854
+ "Holothuriidae": 852,
855
+ "Homalopsidae": 853,
856
+ "Hominidae": 854,
857
+ "Homostichanthidae": 855,
858
+ "Hookeriaceae": 856,
859
+ "Hormathiidae": 857,
860
+ "Hormuridae": 858,
861
+ "Humiriaceae": 859,
862
+ "Hyacinthaceae": 860,
863
+ "Hyaenidae": 861,
864
+ "Hyaloscyphaceae": 862,
865
+ "Hydnangiaceae": 863,
866
+ "Hydractiniidae": 864,
867
+ "Hydrangeaceae": 865,
868
+ "Hydridae": 866,
869
+ "Hydrochaeridae": 867,
870
+ "Hydrogenophilaceae": 868,
871
+ "Hydrogenothermaceae": 869,
872
+ "Hydrophyllaceae": 870,
873
+ "Hygrophoraceae": 871,
874
+ "Hylidae": 872,
875
+ "Hylobatidae": 873,
876
+ "Hylocomiaceae": 874,
877
+ "Hymenobacteraceae": 875,
878
+ "Hymenochaetaceae": 876,
879
+ "Hymenogastraceae": 877,
880
+ "Hymenolepididae": 878,
881
+ "Hymenomonadaceae": 879,
882
+ "Hymenophyllaceae": 880,
883
+ "Hymenopodidae": 881,
884
+ "Hynobiidae": 882,
885
+ "Hypericaceae": 883,
886
+ "Hyperoliidae": 884,
887
+ "Hyphomicrobiaceae": 885,
888
+ "Hyphomonadaceae": 886,
889
+ "Hypnaceae": 887,
890
+ "Hypneaceae": 888,
891
+ "Hypocreaceae": 889,
892
+ "Hypopterygiaceae": 890,
893
+ "Hypoviridae": 891,
894
+ "Hypoxidaceae": 892,
895
+ "Hypoxylaceae": 893,
896
+ "Hypsibiidae": 894,
897
+ "Hystricidae": 895,
898
+ "Icacinaceae": 896,
899
+ "Ichneumonidae": 897,
900
+ "Ichthyophiidae": 898,
901
+ "Ictaluridae": 899,
902
+ "Idiomarinaceae": 900,
903
+ "Iflaviridae": 901,
904
+ "Ignavibacteriaceae": 902,
905
+ "Iguanidae": 903,
906
+ "Ilumatobacteraceae": 904,
907
+ "Indostomidae": 905,
908
+ "Indriidae": 906,
909
+ "Iniidae": 907,
910
+ "Inoviridae": 908,
911
+ "Intrasporangiaceae": 909,
912
+ "Iridaceae": 910,
913
+ "Iridoviridae": 911,
914
+ "Irpicaceae": 912,
915
+ "Isochrysidaceae": 913,
916
+ "Isoetaceae": 914,
917
+ "Isoparorchiidae": 915,
918
+ "Isophelliidae": 916,
919
+ "Isosphaeraceae": 917,
920
+ "Isotomidae": 918,
921
+ "Istiophoridae": 919,
922
+ "Ixodidae": 920,
923
+ "Jonesiaceae": 921,
924
+ "Juglandaceae": 922,
925
+ "Juncaceae": 923,
926
+ "Kangiellaceae": 924,
927
+ "Kareniaceae": 925,
928
+ "Kineosporiaceae": 926,
929
+ "Kitaviridae": 927,
930
+ "Klebsormidiaceae": 928,
931
+ "Kofleriaceae": 929,
932
+ "Kolmioviridae": 930,
933
+ "Kosmotogaceae": 931,
934
+ "Kribbellaceae": 932,
935
+ "Kryptoperidiniaceae": 933,
936
+ "Kyanoviridae": 934,
937
+ "Kytococcaceae": 935,
938
+ "Labridae": 936,
939
+ "Lacertidae": 937,
940
+ "Lachnospiraceae": 938,
941
+ "Lactobacillaceae": 939,
942
+ "Lactoridaceae": 940,
943
+ "Lamiaceae": 941,
944
+ "Laminariaceae": 942,
945
+ "Lampridae": 943,
946
+ "Lamprophiidae": 944,
947
+ "Lampyridae": 945,
948
+ "Laniidae": 946,
949
+ "Laridae": 947,
950
+ "Lateolabracidae": 948,
951
+ "Lauraceae": 949,
952
+ "Leadbetterellaceae": 950,
953
+ "Lecythidaceae": 951,
954
+ "Legeriomycetaceae": 952,
955
+ "Legionellaceae": 953,
956
+ "Leisingerviridae": 954,
957
+ "Lemuridae": 955,
958
+ "Lentibulariaceae": 956,
959
+ "Lepidosirenidae": 957,
960
+ "Lepidoziaceae": 958,
961
+ "Lepilemuridae": 959,
962
+ "Lepismatidae": 960,
963
+ "Lepisosteidae": 961,
964
+ "Leporidae": 962,
965
+ "Leptodactylidae": 963,
966
+ "Leptolyngbyaceae": 964,
967
+ "Leptosphaeriaceae": 965,
968
+ "Leptospiraceae": 966,
969
+ "Leptotrichiaceae": 967,
970
+ "Leuciscidae": 968,
971
+ "Leucodontaceae": 969,
972
+ "Leucosporidiaceae": 970,
973
+ "Lewinellaceae": 971,
974
+ "Libellulidae": 972,
975
+ "Lichtheimiaceae": 973,
976
+ "Liliaceae": 974,
977
+ "Limacidae": 975,
978
+ "Limacodidae": 976,
979
+ "Limnanthaceae": 977,
980
+ "Limnodynastidae": 978,
981
+ "Limnoriidae": 979,
982
+ "Limulidae": 980,
983
+ "Linaceae": 981,
984
+ "Lindbergviridae": 982,
985
+ "Linderniaceae": 983,
986
+ "Lineidae": 984,
987
+ "Lingulidae": 985,
988
+ "Lingulodiniaceae": 986,
989
+ "Liparidae": 987,
990
+ "Lipomycetaceae": 988,
991
+ "Liposcelididae": 989,
992
+ "Lipothrixviridae": 990,
993
+ "Lipotidae": 991,
994
+ "Listeriaceae": 992,
995
+ "Lithobiidae": 993,
996
+ "Lithodidae": 994,
997
+ "Littorinidae": 995,
998
+ "Loasaceae": 996,
999
+ "Loganiaceae": 997,
1000
+ "Loliginidae": 998,
1001
+ "Lonchitidaceae": 999,
1002
+ "Lonchodidae": 1000,
1003
+ "Lophiidae": 1001,
1004
+ "Lorisidae": 1002,
1005
+ "Lottiidae": 1003,
1006
+ "Loxocemidae": 1004,
1007
+ "Loxodidae": 1005,
1008
+ "Loxosomatidae": 1006,
1009
+ "Lucinidae": 1007,
1010
+ "Lumbricidae": 1008,
1011
+ "Lycopodiaceae": 1009,
1012
+ "Lycosidae": 1010,
1013
+ "Lygaeidae": 1011,
1014
+ "Lymnaeidae": 1012,
1015
+ "Lyophyllaceae": 1013,
1016
+ "Lysobacteraceae": 1014,
1017
+ "Lythraceae": 1015,
1018
+ "Macraucheniidae": 1016,
1019
+ "Macrobiotidae": 1017,
1020
+ "Macropodidae": 1018,
1021
+ "Macroscelididae": 1019,
1022
+ "Macrothelidae": 1020,
1023
+ "Mactridae": 1021,
1024
+ "Madridviridae": 1022,
1025
+ "Magnaporthaceae": 1023,
1026
+ "Magnetococcaceae": 1024,
1027
+ "Magnetospirillaceae": 1025,
1028
+ "Magnoliaceae": 1026,
1029
+ "Majidae": 1027,
1030
+ "Malacoherpesviridae": 1028,
1031
+ "Malasseziaceae": 1029,
1032
+ "Malbrancheaceae": 1030,
1033
+ "Malpighiaceae": 1031,
1034
+ "Malvaceae": 1032,
1035
+ "Mamiellaceae": 1033,
1036
+ "Mammutidae": 1034,
1037
+ "Manidae": 1035,
1038
+ "Mantidae": 1036,
1039
+ "Mantophasmatidae": 1037,
1040
+ "Marantaceae": 1038,
1041
+ "Marasmiaceae": 1039,
1042
+ "Marattiaceae": 1040,
1043
+ "Marchantiaceae": 1041,
1044
+ "Maricaulaceae": 1042,
1045
+ "Marinobacteraceae": 1043,
1046
+ "Marivirgaceae": 1044,
1047
+ "Marseilleviridae": 1045,
1048
+ "Marsileaceae": 1046,
1049
+ "Martyniaceae": 1047,
1050
+ "Mastigamoebidae": 1048,
1051
+ "Mastotermitidae": 1049,
1052
+ "Matonaviridae": 1050,
1053
+ "Mayoviridae": 1051,
1054
+ "Megachilidae": 1052,
1055
+ "Megadermatidae": 1053,
1056
+ "Megalonychidae": 1054,
1057
+ "Megalopidae": 1055,
1058
+ "Megalopygidae": 1056,
1059
+ "Megapodiidae": 1057,
1060
+ "Megascolecidae": 1058,
1061
+ "Megatheriidae": 1059,
1062
+ "Melampsoraceae": 1060,
1063
+ "Melanthiaceae": 1061,
1064
+ "Melastomataceae": 1062,
1065
+ "Meliaceae": 1063,
1066
+ "Melioribacteraceae": 1064,
1067
+ "Meliphagidae": 1065,
1068
+ "Melithaeidae": 1066,
1069
+ "Melittidae": 1067,
1070
+ "Meloidogynidae": 1068,
1071
+ "Melongenidae": 1069,
1072
+ "Menispermaceae": 1070,
1073
+ "Menyanthaceae": 1071,
1074
+ "Mephitidae": 1072,
1075
+ "Merismopediaceae": 1073,
1076
+ "Merlucciidae": 1074,
1077
+ "Meruliaceae": 1075,
1078
+ "Merulinidae": 1076,
1079
+ "Mesoniviridae": 1077,
1080
+ "Mesostigmataceae": 1078,
1081
+ "Mesyanzhinovviridae": 1079,
1082
+ "Metamycoplasmataceae": 1080,
1083
+ "Metastrongylidae": 1081,
1084
+ "Methanobacteriaceae": 1082,
1085
+ "Methanocaldococcaceae": 1083,
1086
+ "Methanocellaceae": 1084,
1087
+ "Methanococcaceae": 1085,
1088
+ "Methanocorpusculaceae": 1086,
1089
+ "Methanomassiliicoccaceae": 1087,
1090
+ "Methanomethylophilaceae": 1088,
1091
+ "Methanomicrobiaceae": 1089,
1092
+ "Methanopyraceae": 1090,
1093
+ "Methanoregulaceae": 1091,
1094
+ "Methanosarcinaceae": 1092,
1095
+ "Methanospirillaceae": 1093,
1096
+ "Methanothermaceae": 1094,
1097
+ "Methanotrichaceae": 1095,
1098
+ "Methylacidiphilaceae": 1096,
1099
+ "Methylobacteriaceae": 1097,
1100
+ "Methylococcaceae": 1098,
1101
+ "Methylocystaceae": 1099,
1102
+ "Methylophilaceae": 1100,
1103
+ "Metridiidae": 1101,
1104
+ "Metschnikowiaceae": 1102,
1105
+ "Microascaceae": 1103,
1106
+ "Microbacteriaceae": 1104,
1107
+ "Microbiotheriidae": 1105,
1108
+ "Microbotryaceae": 1106,
1109
+ "Microbulbiferaceae": 1107,
1110
+ "Micrococcaceae": 1108,
1111
+ "Microcoleaceae": 1109,
1112
+ "Microcystaceae": 1110,
1113
+ "Microdochiaceae": 1111,
1114
+ "Micromonosporaceae": 1112,
1115
+ "Microscillaceae": 1113,
1116
+ "Microviridae": 1114,
1117
+ "Milleporidae": 1115,
1118
+ "Milnesiidae": 1116,
1119
+ "Mimiviridae": 1117,
1120
+ "Miniopteridae": 1118,
1121
+ "Mitoviridae": 1119,
1122
+ "Mitrocomidae": 1120,
1123
+ "Mktvariviridae": 1121,
1124
+ "Molgulidae": 1122,
1125
+ "Mollisiaceae": 1123,
1126
+ "Molluginaceae": 1124,
1127
+ "Molossidae": 1125,
1128
+ "Molpadiidae": 1126,
1129
+ "Monocleaceae": 1127,
1130
+ "Monodontidae": 1128,
1131
+ "Montiniaceae": 1129,
1132
+ "Mopaliidae": 1130,
1133
+ "Moraceae": 1131,
1134
+ "Moraxellaceae": 1132,
1135
+ "Morganellaceae": 1133,
1136
+ "Moringaceae": 1134,
1137
+ "Moritellaceae": 1135,
1138
+ "Mormoopidae": 1136,
1139
+ "Moronidae": 1137,
1140
+ "Mortierellaceae": 1138,
1141
+ "Moschidae": 1139,
1142
+ "Mrakiaceae": 1140,
1143
+ "Mucoraceae": 1141,
1144
+ "Mugilidae": 1142,
1145
+ "Mullidae": 1143,
1146
+ "Muraenesocidae": 1144,
1147
+ "Muraenidae": 1145,
1148
+ "Muricidae": 1146,
1149
+ "Muridae": 1147,
1150
+ "Musaceae": 1148,
1151
+ "Muscicapidae": 1149,
1152
+ "Muscidae": 1150,
1153
+ "Musophagidae": 1151,
1154
+ "Mustelidae": 1152,
1155
+ "Mycenaceae": 1153,
1156
+ "Mycobacteriaceae": 1154,
1157
+ "Mycoplasmataceae": 1155,
1158
+ "Mycoplasmoidaceae": 1156,
1159
+ "Mycosphaerellaceae": 1157,
1160
+ "Myctophidae": 1158,
1161
+ "Myidae": 1159,
1162
+ "Mylodontidae": 1160,
1163
+ "Myobatrachidae": 1161,
1164
+ "Myocastoridae": 1162,
1165
+ "Myricaceae": 1163,
1166
+ "Myristicaceae": 1164,
1167
+ "Myrmecobiidae": 1165,
1168
+ "Myrmecophagidae": 1166,
1169
+ "Myrtaceae": 1167,
1170
+ "Mystacinidae": 1168,
1171
+ "Mytilidae": 1169,
1172
+ "Mytilinidiaceae": 1170,
1173
+ "Myxinidae": 1171,
1174
+ "Myxococcaceae": 1172,
1175
+ "Myxotrichaceae": 1173,
1176
+ "Myzostomatidae": 1174,
1177
+ "Naididae": 1175,
1178
+ "Nairoviridae": 1176,
1179
+ "Nakamurellaceae": 1177,
1180
+ "Namaceae": 1178,
1181
+ "Nandiniidae": 1179,
1182
+ "Nanoarchaeaceae": 1180,
1183
+ "Nanoviridae": 1181,
1184
+ "Narcinidae": 1182,
1185
+ "Narkidae": 1183,
1186
+ "Narnaviridae": 1184,
1187
+ "Nassariidae": 1185,
1188
+ "Natalidae": 1186,
1189
+ "Natranaerobiaceae": 1187,
1190
+ "Natrialbaceae": 1188,
1191
+ "Natronincolaceae": 1189,
1192
+ "Natronomonadaceae": 1190,
1193
+ "Nautiliaceae": 1191,
1194
+ "Nautilidae": 1192,
1195
+ "Neckeraceae": 1193,
1196
+ "Nectriaceae": 1194,
1197
+ "Neisseriaceae": 1195,
1198
+ "Nelumbonaceae": 1196,
1199
+ "Nemacheilidae": 1197,
1200
+ "Nemesiidae": 1198,
1201
+ "Neobalaenidae": 1199,
1202
+ "Neocallimastigaceae": 1200,
1203
+ "Neocamarosporiaceae": 1201,
1204
+ "Neodiplogasteridae": 1202,
1205
+ "Neomoorellaceae": 1203,
1206
+ "Neomorphidae": 1204,
1207
+ "Nepenthaceae": 1205,
1208
+ "Nephilidae": 1206,
1209
+ "Nephrolepidaceae": 1207,
1210
+ "Nephropidae": 1208,
1211
+ "Nephroselmidaceae": 1209,
1212
+ "Nephtheidae": 1210,
1213
+ "Nereididae": 1211,
1214
+ "Neritidae": 1212,
1215
+ "Nesomyidae": 1213,
1216
+ "Nimaviridae": 1214,
1217
+ "Niphatidae": 1215,
1218
+ "Nitidulidae": 1216,
1219
+ "Nitrariaceae": 1217,
1220
+ "Nitratiruptoraceae": 1218,
1221
+ "Nitrobacteraceae": 1219,
1222
+ "Nitrosomonadaceae": 1220,
1223
+ "Nitrosopumilaceae": 1221,
1224
+ "Nitrospinaceae": 1222,
1225
+ "Nitrospiraceae": 1223,
1226
+ "Nocardiaceae": 1224,
1227
+ "Nocardioidaceae": 1225,
1228
+ "Nocardiopsidaceae": 1226,
1229
+ "Noctilionidae": 1227,
1230
+ "Noctuidae": 1228,
1231
+ "Nodaviridae": 1229,
1232
+ "Nodulariaceae": 1230,
1233
+ "Noelaerhabdaceae": 1231,
1234
+ "Noraviridae": 1232,
1235
+ "Nosematidae": 1233,
1236
+ "Nostocaceae": 1234,
1237
+ "Notodontidae": 1235,
1238
+ "Notoryctidae": 1236,
1239
+ "Nototheniidae": 1237,
1240
+ "Novispirillaceae": 1238,
1241
+ "Numididae": 1239,
1242
+ "Nyctaginaceae": 1240,
1243
+ "Nyctotheridae": 1241,
1244
+ "Nymphaeaceae": 1242,
1245
+ "Nymphalidae": 1243,
1246
+ "Nyssaceae": 1244,
1247
+ "Obeliidae": 1245,
1248
+ "Oceanospirillaceae": 1246,
1249
+ "Ochotonidae": 1247,
1250
+ "Octodontidae": 1248,
1251
+ "Octopodidae": 1249,
1252
+ "Ocypodidae": 1250,
1253
+ "Odobenidae": 1251,
1254
+ "Odontaspididae": 1252,
1255
+ "Odontophoridae": 1253,
1256
+ "Oedogoniaceae": 1254,
1257
+ "Oenonidae": 1255,
1258
+ "Oestridae": 1256,
1259
+ "Oikopleuridae": 1257,
1260
+ "Oleaceae": 1258,
1261
+ "Olindiidae": 1259,
1262
+ "Olisthodiscaceae": 1260,
1263
+ "Oltmannsiellopsidaceae": 1261,
1264
+ "Ommastrephidae": 1262,
1265
+ "Omphalotaceae": 1263,
1266
+ "Onagraceae": 1264,
1267
+ "Onchocercidae": 1265,
1268
+ "Onocleaceae": 1266,
1269
+ "Onychiuridae": 1267,
1270
+ "Onygenaceae": 1268,
1271
+ "Ophichthidae": 1269,
1272
+ "Ophiocordycipitaceae": 1270,
1273
+ "Ophioglossaceae": 1271,
1274
+ "Ophiostomataceae": 1272,
1275
+ "Opisthocomidae": 1273,
1276
+ "Opisthorchiidae": 1274,
1277
+ "Opitutaceae": 1275,
1278
+ "Oplegnathidae": 1276,
1279
+ "Oplophoridae": 1277,
1280
+ "Orbiliaceae": 1278,
1281
+ "Orchidaceae": 1279,
1282
+ "Oreosomatidae": 1280,
1283
+ "Ornithorhynchidae": 1281,
1284
+ "Orobanchaceae": 1282,
1285
+ "Orthoherpesviridae": 1283,
1286
+ "Orthomyxoviridae": 1284,
1287
+ "Orthototiviridae": 1285,
1288
+ "Orycteropodidae": 1286,
1289
+ "Oscarellidae": 1287,
1290
+ "Oscillatoriaceae": 1288,
1291
+ "Oscillospiraceae": 1289,
1292
+ "Osmeridae": 1290,
1293
+ "Osmundaceae": 1291,
1294
+ "Osphronemidae": 1292,
1295
+ "Osteoglossidae": 1293,
1296
+ "Ostreidae": 1294,
1297
+ "Otariidae": 1295,
1298
+ "Oweniidae": 1296,
1299
+ "Oxalidaceae": 1297,
1300
+ "Oxalobacteraceae": 1298,
1301
+ "Oxyopidae": 1299,
1302
+ "Oxyrrhinaceae": 1300,
1303
+ "Oxytrichidae": 1301,
1304
+ "Pachysolenaceae": 1302,
1305
+ "Paenibacillaceae": 1303,
1306
+ "Paeoniaceae": 1304,
1307
+ "Palaemonidae": 1305,
1308
+ "Palinuridae": 1306,
1309
+ "Palmariaceae": 1307,
1310
+ "Paludibacteraceae": 1308,
1311
+ "Pamosaviridae": 1309,
1312
+ "Panaceae": 1310,
1313
+ "Panagrolaimidae": 1311,
1314
+ "Pandalidae": 1312,
1315
+ "Pangasiidae": 1313,
1316
+ "Pantodontidae": 1314,
1317
+ "Papaveraceae": 1315,
1318
+ "Papilionidae": 1316,
1319
+ "Papillomaviridae": 1317,
1320
+ "Parachlamydiaceae": 1318,
1321
+ "Paracoccaceae": 1319,
1322
+ "Paradisaeidae": 1320,
1323
+ "Paralichthyidae": 1321,
1324
+ "Parameciidae": 1322,
1325
+ "Paramphistomidae": 1323,
1326
+ "Paramyxoviridae": 1324,
1327
+ "Parastacidae": 1325,
1328
+ "Parechinidae": 1326,
1329
+ "Paridae": 1327,
1330
+ "Parmeliaceae": 1328,
1331
+ "Parodontellaceae": 1329,
1332
+ "Partitiviridae": 1330,
1333
+ "Parulidae": 1331,
1334
+ "Parvibaculaceae": 1332,
1335
+ "Parvoviridae": 1333,
1336
+ "Passeridae": 1334,
1337
+ "Passifloraceae": 1335,
1338
+ "Pasteurellaceae": 1336,
1339
+ "Pasteuriaceae": 1337,
1340
+ "Patellidae": 1338,
1341
+ "Paulinellidae": 1339,
1342
+ "Paulowniaceae": 1340,
1343
+ "Pavlovaceae": 1341,
1344
+ "Paxillaceae": 1342,
1345
+ "Pectinariidae": 1343,
1346
+ "Pectinidae": 1344,
1347
+ "Pectobacteriaceae": 1345,
1348
+ "Pedaliaceae": 1346,
1349
+ "Pedetidae": 1347,
1350
+ "Pediculidae": 1348,
1351
+ "Pedosphaeraceae": 1349,
1352
+ "Peduoviridae": 1350,
1353
+ "Pelliaceae": 1351,
1354
+ "Pelomedusidae": 1352,
1355
+ "Peltigeraceae": 1353,
1356
+ "Penaeidae": 1354,
1357
+ "Peniophoraceae": 1355,
1358
+ "Pentadiplandraceae": 1356,
1359
+ "Pentatomidae": 1357,
1360
+ "Peptoclostridiaceae": 1358,
1361
+ "Peptococcaceae": 1359,
1362
+ "Peptoniphilaceae": 1360,
1363
+ "Peptostreptococcaceae": 1361,
1364
+ "Peramelidae": 1362,
1365
+ "Percidae": 1363,
1366
+ "Percopsidae": 1364,
1367
+ "Peribunyaviridae": 1365,
1368
+ "Peridiniaceae": 1366,
1369
+ "Peripatidae": 1367,
1370
+ "Perkinsidae": 1368,
1371
+ "Peronosporaceae": 1369,
1372
+ "Peroryctidae": 1370,
1373
+ "Petauridae": 1371,
1374
+ "Petiveriaceae": 1372,
1375
+ "Petromyzontidae": 1373,
1376
+ "Petrosiidae": 1374,
1377
+ "Petrotogaceae": 1375,
1378
+ "Pfiesteriaceae": 1376,
1379
+ "Phacaceae": 1377,
1380
+ "Phaeodactylaceae": 1378,
1381
+ "Phaeolaceae": 1379,
1382
+ "Phaeomoniellaceae": 1380,
1383
+ "Phaeosphaeriaceae": 1381,
1384
+ "Phaffomycetaceae": 1382,
1385
+ "Phalacrocoracidae": 1383,
1386
+ "Phalangeridae": 1384,
1387
+ "Phanerochaetaceae": 1385,
1388
+ "Pharidae": 1386,
1389
+ "Phascolarctidae": 1387,
1390
+ "Phasianidae": 1388,
1391
+ "Phasmatidae": 1389,
1392
+ "Phellinaceae": 1390,
1393
+ "Phenuiviridae": 1391,
1394
+ "Philodromidae": 1392,
1395
+ "Phocidae": 1393,
1396
+ "Phocoenidae": 1394,
1397
+ "Phoenicopteridae": 1395,
1398
+ "Pholcidae": 1396,
1399
+ "Phoridae": 1397,
1400
+ "Phrymaceae": 1398,
1401
+ "Phrynosomatidae": 1399,
1402
+ "Phycodnaviridae": 1400,
1403
+ "Phycomycetaceae": 1401,
1404
+ "Phyllobacteriaceae": 1402,
1405
+ "Phyllodactylidae": 1403,
1406
+ "Phyllostomidae": 1404,
1407
+ "Phymanthidae": 1405,
1408
+ "Physalacriaceae": 1406,
1409
+ "Physaraceae": 1407,
1410
+ "Physeteridae": 1408,
1411
+ "Phytolaccaceae": 1409,
1412
+ "Pichiaceae": 1410,
1413
+ "Picidae": 1411,
1414
+ "Picobirnaviridae": 1412,
1415
+ "Picornaviridae": 1413,
1416
+ "Picrophilaceae": 1414,
1417
+ "Pieridae": 1415,
1418
+ "Pimelodidae": 1416,
1419
+ "Pinaceae": 1417,
1420
+ "Pinnidae": 1418,
1421
+ "Piperaceae": 1419,
1422
+ "Pipidae": 1420,
1423
+ "Pirellulaceae": 1421,
1424
+ "Piscirickettsiaceae": 1422,
1425
+ "Pisolithaceae": 1423,
1426
+ "Pitheciidae": 1424,
1427
+ "Pittidae": 1425,
1428
+ "Plagiochilaceae": 1426,
1429
+ "Plakinidae": 1427,
1430
+ "Planctomycetaceae": 1428,
1431
+ "Planorbidae": 1429,
1432
+ "Plantaginaceae": 1430,
1433
+ "Plasmaviridae": 1431,
1434
+ "Plasmodiidae": 1432,
1435
+ "Plasmodiophoridae": 1433,
1436
+ "Platanaceae": 1434,
1437
+ "Platanistidae": 1435,
1438
+ "Plecoglossidae": 1436,
1439
+ "Plectosphaerellaceae": 1437,
1440
+ "Plectreuridae": 1438,
1441
+ "Plectroviridae": 1439,
1442
+ "Pleistophoridae": 1440,
1443
+ "Pleolipoviridae": 1441,
1444
+ "Pleosporaceae": 1442,
1445
+ "Plethodontidae": 1443,
1446
+ "Pleurastraceae": 1444,
1447
+ "Pleuronectidae": 1445,
1448
+ "Pleurotaceae": 1446,
1449
+ "Plexauridae": 1447,
1450
+ "Ploettnerulaceae": 1448,
1451
+ "Plumbaginaceae": 1449,
1452
+ "Plutellidae": 1450,
1453
+ "Pneumocystaceae": 1451,
1454
+ "Pneumoviridae": 1452,
1455
+ "Poaceae": 1453,
1456
+ "Pocilloporidae": 1454,
1457
+ "Podargidae": 1455,
1458
+ "Podocarpaceae": 1456,
1459
+ "Podosporaceae": 1457,
1460
+ "Podostemaceae": 1458,
1461
+ "Poeciliidae": 1459,
1462
+ "Polemoniaceae": 1460,
1463
+ "Polyangiaceae": 1461,
1464
+ "Polybiidae": 1462,
1465
+ "Polycephalomycetaceae": 1463,
1466
+ "Polycitoridae": 1464,
1467
+ "Polyclinidae": 1465,
1468
+ "Polydnaviriformidae": 1466,
1469
+ "Polygalaceae": 1467,
1470
+ "Polygonaceae": 1468,
1471
+ "Polyodontidae": 1469,
1472
+ "Polyomaviridae": 1470,
1473
+ "Polyorchidae": 1471,
1474
+ "Polyphysaceae": 1472,
1475
+ "Polyporaceae": 1473,
1476
+ "Polypteridae": 1474,
1477
+ "Polytrichaceae": 1475,
1478
+ "Pomatostomidae": 1476,
1479
+ "Pompilidae": 1477,
1480
+ "Pontederiaceae": 1478,
1481
+ "Pontoporiidae": 1479,
1482
+ "Poraniidae": 1480,
1483
+ "Porcellionidae": 1481,
1484
+ "Poritidae": 1482,
1485
+ "Porphyridiaceae": 1483,
1486
+ "Porphyromonadaceae": 1484,
1487
+ "Portogloboviridae": 1485,
1488
+ "Portulacaceae": 1486,
1489
+ "Portunidae": 1487,
1490
+ "Potamidae": 1488,
1491
+ "Potamididae": 1489,
1492
+ "Potamotrygonidae": 1490,
1493
+ "Potoroidae": 1491,
1494
+ "Pottiaceae": 1492,
1495
+ "Potyviridae": 1493,
1496
+ "Poxviridae": 1494,
1497
+ "Prasiolaceae": 1495,
1498
+ "Prevotellaceae": 1496,
1499
+ "Priapulidae": 1497,
1500
+ "Primulaceae": 1498,
1501
+ "Procaviidae": 1499,
1502
+ "Procellariidae": 1500,
1503
+ "Prochloraceae": 1501,
1504
+ "Prochlorococcaceae": 1502,
1505
+ "Prochlorotrichaceae": 1503,
1506
+ "Procyonidae": 1504,
1507
+ "Promethearchaeaceae": 1505,
1508
+ "Promicromonosporaceae": 1506,
1509
+ "Propionibacteriaceae": 1507,
1510
+ "Prorocentraceae": 1508,
1511
+ "Proteaceae": 1509,
1512
+ "Proteidae": 1510,
1513
+ "Protopteridae": 1511,
1514
+ "Protosiphonaceae": 1512,
1515
+ "Prymnesiaceae": 1513,
1516
+ "Psalteriomonadidae": 1514,
1517
+ "Psammobiidae": 1515,
1518
+ "Psathyrellaceae": 1516,
1519
+ "Pseudanabaenaceae": 1517,
1520
+ "Pseudaphritidae": 1518,
1521
+ "Pseudoalteromonadaceae": 1519,
1522
+ "Pseudobdellovibrionaceae": 1520,
1523
+ "Pseudocheiridae": 1521,
1524
+ "Pseudococcidae": 1522,
1525
+ "Pseudomonadaceae": 1523,
1526
+ "Pseudonocardiaceae": 1524,
1527
+ "Pseudototiviridae": 1525,
1528
+ "Psilidae": 1526,
1529
+ "Psilotaceae": 1527,
1530
+ "Psittacidae": 1528,
1531
+ "Psittaculidae": 1529,
1532
+ "Psoroptidae": 1530,
1533
+ "Psychidae": 1531,
1534
+ "Psychodidae": 1532,
1535
+ "Psychromonadaceae": 1533,
1536
+ "Psyllidae": 1534,
1537
+ "Pteridaceae": 1535,
1538
+ "Pteriidae": 1536,
1539
+ "Pteromalidae": 1537,
1540
+ "Pteropodidae": 1538,
1541
+ "Ptilonorhynchidae": 1539,
1542
+ "Ptychomitriaceae": 1540,
1543
+ "Pucciniaceae": 1541,
1544
+ "Pulicidae": 1542,
1545
+ "Pyemotidae": 1543,
1546
+ "Pyralidae": 1544,
1547
+ "Pyrenochaetopsidaceae": 1545,
1548
+ "Pyrenomonadaceae": 1546,
1549
+ "Pyrgomorphidae": 1547,
1550
+ "Pyriculariaceae": 1548,
1551
+ "Pyrocystaceae": 1549,
1552
+ "Pyrodictiaceae": 1550,
1553
+ "Pyroglyphidae": 1551,
1554
+ "Pyronemataceae": 1552,
1555
+ "Pyrrhocoridae": 1553,
1556
+ "Pythiaceae": 1554,
1557
+ "Pythonidae": 1555,
1558
+ "Pyuridae": 1556,
1559
+ "Rajidae": 1557,
1560
+ "Rallidae": 1558,
1561
+ "Ramazzottiidae": 1559,
1562
+ "Ranellidae": 1560,
1563
+ "Ranidae": 1561,
1564
+ "Ranunculaceae": 1562,
1565
+ "Raperosteliaceae": 1563,
1566
+ "Raphidae": 1564,
1567
+ "Rarobacteraceae": 1565,
1568
+ "Reduviidae": 1566,
1569
+ "Renillidae": 1567,
1570
+ "Reticulomyxidae": 1568,
1571
+ "Retroviridae": 1569,
1572
+ "Rhabditidae": 1570,
1573
+ "Rhabdoviridae": 1571,
1574
+ "Rhacophoridae": 1572,
1575
+ "Rhadinorhynchidae": 1573,
1576
+ "Rhamnaceae": 1574,
1577
+ "Rheidae": 1575,
1578
+ "Rhinocerotidae": 1576,
1579
+ "Rhinocryptidae": 1577,
1580
+ "Rhinolophidae": 1578,
1581
+ "Rhinophrynidae": 1579,
1582
+ "Rhinopomatidae": 1580,
1583
+ "Rhizobiaceae": 1581,
1584
+ "Rhizophoraceae": 1582,
1585
+ "Rhizopodaceae": 1583,
1586
+ "Rhizorhabdaceae": 1584,
1587
+ "Rhizostomatidae": 1585,
1588
+ "Rhodanobacteraceae": 1586,
1589
+ "Rhodellaceae": 1587,
1590
+ "Rhodoblastaceae": 1588,
1591
+ "Rhodocyclaceae": 1589,
1592
+ "Rhodomelaceae": 1590,
1593
+ "Rhodospirillaceae": 1591,
1594
+ "Rhodothalassiaceae": 1592,
1595
+ "Rhodothermaceae": 1593,
1596
+ "Rhynchogastremaceae": 1594,
1597
+ "Ricciaceae": 1595,
1598
+ "Rickettsiaceae": 1596,
1599
+ "Rivulariaceae": 1597,
1600
+ "Rivulidae": 1598,
1601
+ "Romaleidae": 1599,
1602
+ "Roridulaceae": 1600,
1603
+ "Rosaceae": 1601,
1604
+ "Roseiflexaceae": 1602,
1605
+ "Roseivirgaceae": 1603,
1606
+ "Roseobacteraceae": 1604,
1607
+ "Rountreeviridae": 1605,
1608
+ "Rubiaceae": 1606,
1609
+ "Rubrobacteraceae": 1607,
1610
+ "Rudiviridae": 1608,
1611
+ "Russulaceae": 1609,
1612
+ "Rutaceae": 1610,
1613
+ "Sabellidae": 1611,
1614
+ "Saccharomycetaceae": 1612,
1615
+ "Saccharomycodaceae": 1613,
1616
+ "Saccharomycopsidaceae": 1614,
1617
+ "Saccotheciaceae": 1615,
1618
+ "Sagartiidae": 1616,
1619
+ "Salamandridae": 1617,
1620
+ "Salasmaviridae": 1618,
1621
+ "Salicaceae": 1619,
1622
+ "Salinibacteraceae": 1620,
1623
+ "Salmonidae": 1621,
1624
+ "Salpingoecidae": 1622,
1625
+ "Salvadoraceae": 1623,
1626
+ "Salviniaceae": 1624,
1627
+ "Sanguibacteraceae": 1625,
1628
+ "Santalaceae": 1626,
1629
+ "Sapindaceae": 1627,
1630
+ "Sapotaceae": 1628,
1631
+ "Saprolegniaceae": 1629,
1632
+ "Sarcocystidae": 1630,
1633
+ "Sarcophagidae": 1631,
1634
+ "Sarcoptidae": 1632,
1635
+ "Sarcosomataceae": 1633,
1636
+ "Sareptidae": 1634,
1637
+ "Sarocladiaceae": 1635,
1638
+ "Sarraceniaceae": 1636,
1639
+ "Saturniidae": 1637,
1640
+ "Saururaceae": 1638,
1641
+ "Saxifragaceae": 1639,
1642
+ "Scarabaeidae": 1640,
1643
+ "Scenedesmaceae": 1641,
1644
+ "Schisandraceae": 1642,
1645
+ "Schistosomatidae": 1643,
1646
+ "Schitoviridae": 1644,
1647
+ "Schizophyllaceae": 1645,
1648
+ "Schizosaccharomycetaceae": 1646,
1649
+ "Schizotheciaceae": 1647,
1650
+ "Sciadopityaceae": 1648,
1651
+ "Sciaenidae": 1649,
1652
+ "Sciaridae": 1650,
1653
+ "Scincidae": 1651,
1654
+ "Sciuridae": 1652,
1655
+ "Sclerotiniaceae": 1653,
1656
+ "Scoliidae": 1654,
1657
+ "Scolopacidae": 1655,
1658
+ "Scolopendridae": 1656,
1659
+ "Scombridae": 1657,
1660
+ "Scophthalmidae": 1658,
1661
+ "Scorpaenidae": 1659,
1662
+ "Scorpionidae": 1660,
1663
+ "Scrophulariaceae": 1661,
1664
+ "Scutigeridae": 1662,
1665
+ "Scyliorhinidae": 1663,
1666
+ "Scytodidae": 1664,
1667
+ "Scytonemataceae": 1665,
1668
+ "Scytosiphonaceae": 1666,
1669
+ "Sebastidae": 1667,
1670
+ "Secoviridae": 1668,
1671
+ "Sedoreoviridae": 1669,
1672
+ "Segestriidae": 1670,
1673
+ "Segniliparaceae": 1671,
1674
+ "Selaginellaceae": 1672,
1675
+ "Selenastraceae": 1673,
1676
+ "Selenomonadaceae": 1674,
1677
+ "Sepiidae": 1675,
1678
+ "Serendipitaceae": 1676,
1679
+ "Serpulaceae": 1677,
1680
+ "Serranidae": 1678,
1681
+ "Serrasalmidae": 1679,
1682
+ "Shewanellaceae": 1680,
1683
+ "Siboglinidae": 1681,
1684
+ "Sicariidae": 1682,
1685
+ "Siganidae": 1683,
1686
+ "Silphidae": 1684,
1687
+ "Siluridae": 1685,
1688
+ "Simaroubaceae": 1686,
1689
+ "Simmondsiaceae": 1687,
1690
+ "Simuliidae": 1688,
1691
+ "Sinipercidae": 1689,
1692
+ "Sipunculidae": 1690,
1693
+ "Sirenicapillariaceae": 1691,
1694
+ "Skeletonemataceae": 1692,
1695
+ "Solanaceae": 1693,
1696
+ "Solasteridae": 1694,
1697
+ "Solecurtidae": 1695,
1698
+ "Soleidae": 1696,
1699
+ "Solemoviridae": 1697,
1700
+ "Solibacteraceae": 1698,
1701
+ "Solieriaceae": 1699,
1702
+ "Solinviviridae": 1700,
1703
+ "Somniosidae": 1701,
1704
+ "Sordariaceae": 1702,
1705
+ "Soricidae": 1703,
1706
+ "Spadellidae": 1704,
1707
+ "Spalacidae": 1705,
1708
+ "Sparassidae": 1706,
1709
+ "Sparidae": 1707,
1710
+ "Speleonectidae": 1708,
1711
+ "Sphaerobacteraceae": 1709,
1712
+ "Sphaerobolaceae": 1710,
1713
+ "Sphaerocarpaceae": 1711,
1714
+ "Sphaerodactylidae": 1712,
1715
+ "Sphaerotilaceae": 1713,
1716
+ "Sphagnaceae": 1714,
1717
+ "Sphecidae": 1715,
1718
+ "Spheniscidae": 1716,
1719
+ "Sphenodontidae": 1717,
1720
+ "Sphenopidae": 1718,
1721
+ "Sphingidae": 1719,
1722
+ "Sphingobacteriaceae": 1720,
1723
+ "Sphingobiaceae": 1721,
1724
+ "Sphingomonadaceae": 1722,
1725
+ "Sphingopyxidaceae": 1723,
1726
+ "Sphingosinicellaceae": 1724,
1727
+ "Sphyraenidae": 1725,
1728
+ "Spinareoviridae": 1726,
1729
+ "Spirochaetaceae": 1727,
1730
+ "Spirogyraceae": 1728,
1731
+ "Spiroplasmataceae": 1729,
1732
+ "Spirosomataceae": 1730,
1733
+ "Spirulinaceae": 1731,
1734
+ "Spizellomycetaceae": 1732,
1735
+ "Splachnaceae": 1733,
1736
+ "Spondylomoraceae": 1734,
1737
+ "Spongillidae": 1735,
1738
+ "Sporidiobolaceae": 1736,
1739
+ "Sporocadaceae": 1737,
1740
+ "Sporormiaceae": 1738,
1741
+ "Sputniviroviridae": 1739,
1742
+ "Squalidae": 1740,
1743
+ "Stachybotryaceae": 1741,
1744
+ "Staphylococcaceae": 1742,
1745
+ "Stappiaceae": 1743,
1746
+ "Stegnospermataceae": 1744,
1747
+ "Steigviridae": 1745,
1748
+ "Steinernematidae": 1746,
1749
+ "Stercorariidae": 1747,
1750
+ "Stereaceae": 1748,
1751
+ "Stereocaulaceae": 1749,
1752
+ "Sterolibacteriaceae": 1750,
1753
+ "Stichodactylidae": 1751,
1754
+ "Stichopodidae": 1752,
1755
+ "Stomechinidae": 1753,
1756
+ "Stomiidae": 1754,
1757
+ "Stomolophidae": 1755,
1758
+ "Straboviridae": 1756,
1759
+ "Stratiomyidae": 1757,
1760
+ "Streptococcaceae": 1758,
1761
+ "Streptomycetaceae": 1759,
1762
+ "Streptosporangiaceae": 1760,
1763
+ "Strigidae": 1761,
1764
+ "Strongylocentrotidae": 1762,
1765
+ "Strophariaceae": 1763,
1766
+ "Struthionidae": 1764,
1767
+ "Sturnidae": 1765,
1768
+ "Styelidae": 1766,
1769
+ "Styracaceae": 1767,
1770
+ "Suberitidae": 1768,
1771
+ "Succinivibrionaceae": 1769,
1772
+ "Suidae": 1770,
1773
+ "Suillaceae": 1771,
1774
+ "Sulfolobaceae": 1772,
1775
+ "Sulfurimonadaceae": 1773,
1776
+ "Sulfurospirillaceae": 1774,
1777
+ "Sulfurovaceae": 1775,
1778
+ "Sylviidae": 1776,
1779
+ "Symbiobacteriaceae": 1777,
1780
+ "Symbiodiniaceae": 1778,
1781
+ "Synanceiidae": 1779,
1782
+ "Synbranchidae": 1780,
1783
+ "Syncephalastraceae": 1781,
1784
+ "Syndiniaceae": 1782,
1785
+ "Synechococcaceae": 1783,
1786
+ "Synergistaceae": 1784,
1787
+ "Syngnathidae": 1785,
1788
+ "Synodontidae": 1786,
1789
+ "Syntrophaceae": 1787,
1790
+ "Syntrophobacteraceae": 1788,
1791
+ "Syntrophomonadaceae": 1789,
1792
+ "Syntrophotaleaceae": 1790,
1793
+ "Syrphidae": 1791,
1794
+ "Tabanidae": 1792,
1795
+ "Tachyglossidae": 1793,
1796
+ "Taeniidae": 1794,
1797
+ "Taiwanofungaceae": 1795,
1798
+ "Takakiaceae": 1796,
1799
+ "Talitridae": 1797,
1800
+ "Talpidae": 1798,
1801
+ "Tanichthyidae": 1799,
1802
+ "Tannerellaceae": 1800,
1803
+ "Tapinellaceae": 1801,
1804
+ "Tapiridae": 1802,
1805
+ "Tarsiidae": 1803,
1806
+ "Tarsipedidae": 1804,
1807
+ "Taxaceae": 1805,
1808
+ "Tayassuidae": 1806,
1809
+ "Tectariaceae": 1807,
1810
+ "Tectiviridae": 1808,
1811
+ "Tegulidae": 1809,
1812
+ "Teiidae": 1810,
1813
+ "Tellinidae": 1811,
1814
+ "Tenebrionidae": 1812,
1815
+ "Tenrecidae": 1813,
1816
+ "Tephritidae": 1814,
1817
+ "Tepidibacteraceae": 1815,
1818
+ "Teratosphaeriaceae": 1816,
1819
+ "Terebridae": 1817,
1820
+ "Termitidae": 1818,
1821
+ "Termopsidae": 1819,
1822
+ "Testudinidae": 1820,
1823
+ "Tetrahymenidae": 1821,
1824
+ "Tetraodontidae": 1822,
1825
+ "Thalassianthidae": 1823,
1826
+ "Thalassiosiraceae": 1824,
1827
+ "Thalassospiraceae": 1825,
1828
+ "Theaceae": 1826,
1829
+ "Theileriidae": 1827,
1830
+ "Thelebolaceae": 1828,
1831
+ "Thelephoraceae": 1829,
1832
+ "Themistidae": 1830,
1833
+ "Theraphosidae": 1831,
1834
+ "Theridiidae": 1832,
1835
+ "Thermaceae": 1833,
1836
+ "Thermoactinomycetaceae": 1834,
1837
+ "Thermoanaerobacteraceae": 1835,
1838
+ "Thermoascaceae": 1836,
1839
+ "Thermococcaceae": 1837,
1840
+ "Thermodesulfobacteriaceae": 1838,
1841
+ "Thermodesulfovibrionaceae": 1839,
1842
+ "Thermofilaceae": 1840,
1843
+ "Thermoleophilaceae": 1841,
1844
+ "Thermomicrobiaceae": 1842,
1845
+ "Thermomonosporaceae": 1843,
1846
+ "Thermoplasmataceae": 1844,
1847
+ "Thermoproteaceae": 1845,
1848
+ "Thermosediminibacteraceae": 1846,
1849
+ "Thermostichaceae": 1847,
1850
+ "Thermosulfidibacteraceae": 1848,
1851
+ "Thermosynechococcaceae": 1849,
1852
+ "Thermotogaceae": 1850,
1853
+ "Thespidae": 1851,
1854
+ "Thiobacillaceae": 1852,
1855
+ "Thiotrichaceae": 1853,
1856
+ "Thomisidae": 1854,
1857
+ "Thraupidae": 1855,
1858
+ "Thraustochytriidae": 1856,
1859
+ "Threskiornithidae": 1857,
1860
+ "Thripidae": 1858,
1861
+ "Thryonomyidae": 1859,
1862
+ "Thylacinidae": 1860,
1863
+ "Thymelaeaceae": 1861,
1864
+ "Thyropteridae": 1862,
1865
+ "Timaliidae": 1863,
1866
+ "Tinamidae": 1864,
1867
+ "Tobaniviridae": 1865,
1868
+ "Todidae": 1866,
1869
+ "Togaviridae": 1867,
1870
+ "Tolypothrichaceae": 1868,
1871
+ "Tombusviridae": 1869,
1872
+ "Tomosaviridae": 1870,
1873
+ "Tonesaviridae": 1871,
1874
+ "Torpedinidae": 1872,
1875
+ "Tortricidae": 1873,
1876
+ "Tospoviridae": 1874,
1877
+ "Toxocaridae": 1875,
1878
+ "Toxodontidae": 1876,
1879
+ "Toxopneustidae": 1877,
1880
+ "Trachipteridae": 1878,
1881
+ "Tragulidae": 1879,
1882
+ "Trautnerviridae": 1880,
1883
+ "Tremellaceae": 1881,
1884
+ "Treponemataceae": 1882,
1885
+ "Triakidae": 1883,
1886
+ "Trichechidae": 1884,
1887
+ "Trichinellidae": 1885,
1888
+ "Trichocomaceae": 1886,
1889
+ "Trichogrammatidae": 1887,
1890
+ "Tricholomataceae": 1888,
1891
+ "Trichomonadidae": 1889,
1892
+ "Trichomonascaceae": 1890,
1893
+ "Trichoplacidae": 1891,
1894
+ "Trichosporonaceae": 1892,
1895
+ "Trichostrongylidae": 1893,
1896
+ "Trichuridae": 1894,
1897
+ "Triglidae": 1895,
1898
+ "Trigonopsidaceae": 1896,
1899
+ "Trimorphomycetaceae": 1897,
1900
+ "Trionychidae": 1898,
1901
+ "Tripedaliidae": 1899,
1902
+ "Tristromaviridae": 1900,
1903
+ "Tritrichomonadidae": 1901,
1904
+ "Trochidae": 1902,
1905
+ "Trochilidae": 1903,
1906
+ "Trochodendraceae": 1904,
1907
+ "Trogonidae": 1905,
1908
+ "Tropaeolaceae": 1906,
1909
+ "Tropherymataceae": 1907,
1910
+ "Tropidophiidae": 1908,
1911
+ "Trueperaceae": 1909,
1912
+ "Trypanosomatidae": 1910,
1913
+ "Trypetheliaceae": 1911,
1914
+ "Tsukamurellaceae": 1912,
1915
+ "Tubariaceae": 1913,
1916
+ "Tuberaceae": 1914,
1917
+ "Tupaiidae": 1915,
1918
+ "Tupiellaceae": 1916,
1919
+ "Turbinidae": 1917,
1920
+ "Turdidae": 1918,
1921
+ "Turnicidae": 1919,
1922
+ "Turridae": 1920,
1923
+ "Tymoviridae": 1921,
1924
+ "Typhaceae": 1922,
1925
+ "Typhlonectidae": 1923,
1926
+ "Typhlopidae": 1924,
1927
+ "Typhulaceae": 1925,
1928
+ "Tyrannidae": 1926,
1929
+ "Tytonidae": 1927,
1930
+ "Ulmaceae": 1928,
1931
+ "Ulmaridae": 1929,
1932
+ "Ulvaceae": 1930,
1933
+ "Umbelopsidaceae": 1931,
1934
+ "Ungulaviridae": 1932,
1935
+ "Unikaryonidae": 1933,
1936
+ "Unionidae": 1934,
1937
+ "Uranoscopidae": 1935,
1938
+ "Urechidae": 1936,
1939
+ "Ursidae": 1937,
1940
+ "Urticaceae": 1938,
1941
+ "Ustilaginaceae": 1939,
1942
+ "Vaejovidae": 1940,
1943
+ "Vahlkampfiidae": 1941,
1944
+ "Vandenendeviridae": 1942,
1945
+ "Varanidae": 1943,
1946
+ "Varunidae": 1944,
1947
+ "Vaucheriaceae": 1945,
1948
+ "Veillonellaceae": 1946,
1949
+ "Veneridae": 1947,
1950
+ "Venturiaceae": 1948,
1951
+ "Verbenaceae": 1949,
1952
+ "Vermamoebidae": 1950,
1953
+ "Verrucomicrobiaceae": 1951,
1954
+ "Vertoviridae": 1952,
1955
+ "Vesicomyidae": 1953,
1956
+ "Vespertilionidae": 1954,
1957
+ "Vespidae": 1955,
1958
+ "Vibrionaceae": 1956,
1959
+ "Violaceae": 1957,
1960
+ "Viperidae": 1958,
1961
+ "Vireonidae": 1959,
1962
+ "Virgaviridae": 1960,
1963
+ "Viscaceae": 1961,
1964
+ "Vitaceae": 1962,
1965
+ "Viverridae": 1963,
1966
+ "Volvocaceae": 1964,
1967
+ "Vombatidae": 1965,
1968
+ "Wallemiaceae": 1966,
1969
+ "Weeksellaceae": 1967,
1970
+ "Welwitschiaceae": 1968,
1971
+ "Wickerhamomycetaceae": 1969,
1972
+ "Winmispiraceae": 1970,
1973
+ "Winteraceae": 1971,
1974
+ "Xanthobacteraceae": 1972,
1975
+ "Xenocyprididae": 1973,
1976
+ "Xenopeltidae": 1974,
1977
+ "Xenoturbellidae": 1975,
1978
+ "Ximeniaceae": 1976,
1979
+ "Xiphiidae": 1977,
1980
+ "Xylariaceae": 1978,
1981
+ "Yersiniaceae": 1979,
1982
+ "Yponomeutidae": 1980,
1983
+ "Zamiaceae": 1981,
1984
+ "Zeidae": 1982,
1985
+ "Zingiberaceae": 1983,
1986
+ "Ziphiidae": 1984,
1987
+ "Zoanthidae": 1985,
1988
+ "Zoarcidae": 1986,
1989
+ "Zodariidae": 1987,
1990
+ "Zoogloeaceae": 1988,
1991
+ "Zygnemataceae": 1989,
1992
+ "Zygophyllaceae": 1990,
1993
+ "Zymomonadaceae": 1991
1994
+ }
dataset/taxon_embedding/vocab/genus_vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
dataset/taxon_embedding/vocab/order_vocab.json ADDED
@@ -0,0 +1,784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<UNK>": 0,
3
+ "Acaryochloridales": 1,
4
+ "Accipitriformes": 2,
5
+ "Acetivibrionales": 3,
6
+ "Acetobacterales": 4,
7
+ "Acholeplasmatales": 5,
8
+ "Acidaminococcales": 6,
9
+ "Acidilobales": 7,
10
+ "Acidimicrobiales": 8,
11
+ "Acidithiobacillales": 9,
12
+ "Acidothermales": 10,
13
+ "Acipenseriformes": 11,
14
+ "Acorales": 12,
15
+ "Acropomatiformes": 13,
16
+ "Actiniaria": 14,
17
+ "Actinomycetales": 15,
18
+ "Actinopolysporales": 16,
19
+ "Acytosteliales": 17,
20
+ "Adapedonta": 18,
21
+ "Aeromonadales": 19,
22
+ "Afrosoricida": 20,
23
+ "Agaricales": 21,
24
+ "Alaninales": 22,
25
+ "Algavirales": 23,
26
+ "Alismatales": 24,
27
+ "Alteromonadales": 25,
28
+ "Amarillovirales": 26,
29
+ "Amborellales": 27,
30
+ "Amiiformes": 28,
31
+ "Amphidiniales": 29,
32
+ "Amphioxiformes": 30,
33
+ "Amphipoda": 31,
34
+ "Amphisphaeriales": 32,
35
+ "Amylocorticiales": 33,
36
+ "Anabantiformes": 34,
37
+ "Anaerolineales": 35,
38
+ "Anaeroplasmatales": 36,
39
+ "Anguilliformes": 37,
40
+ "Anostraca": 38,
41
+ "Anseriformes": 39,
42
+ "Anthoathecata": 40,
43
+ "Anthocerotales": 41,
44
+ "Anura": 42,
45
+ "Apiales": 43,
46
+ "Aplousobranchia": 44,
47
+ "Aplysiida": 45,
48
+ "Apochela": 46,
49
+ "Apodiformes": 47,
50
+ "Apterygiformes": 48,
51
+ "Aquificales": 49,
52
+ "Aquifoliales": 50,
53
+ "Araneae": 51,
54
+ "Araucariales": 52,
55
+ "Arbacioida": 53,
56
+ "Archaeoglobales": 54,
57
+ "Architaenioglossa": 55,
58
+ "Arcoida": 56,
59
+ "Arecales": 57,
60
+ "Articulavirales": 58,
61
+ "Artiodactyla": 59,
62
+ "Ascoideales": 60,
63
+ "Asfuvirales": 61,
64
+ "Asparagales": 62,
65
+ "Aspidochirotida": 63,
66
+ "Asterales": 64,
67
+ "Atheliales": 65,
68
+ "Atheriniformes": 66,
69
+ "Aulopiformes": 67,
70
+ "Auriculariales": 68,
71
+ "Austrobaileyales": 69,
72
+ "Autographivirales": 70,
73
+ "Axinellida": 71,
74
+ "Azygiida": 72,
75
+ "Bacillales": 73,
76
+ "Bacillariales": 74,
77
+ "Bacteriovoracales": 75,
78
+ "Bacteroidales": 76,
79
+ "Balanomorpha": 77,
80
+ "Bangiales": 78,
81
+ "Baphyvirales": 79,
82
+ "Batrachoidiformes": 80,
83
+ "Bdellovibrionales": 81,
84
+ "Beloniformes": 82,
85
+ "Bicosoecida": 83,
86
+ "Bifidobacteriales": 84,
87
+ "Blastocladiales": 85,
88
+ "Blattodea": 86,
89
+ "Blenniiformes": 87,
90
+ "Blubervirales": 88,
91
+ "Boletales": 89,
92
+ "Boraginales": 90,
93
+ "Botryosphaeriales": 91,
94
+ "Brachyspirales": 92,
95
+ "Brassicales": 93,
96
+ "Bruniales": 94,
97
+ "Bryales": 95,
98
+ "Bryobacterales": 96,
99
+ "Bryopsidales": 97,
100
+ "Burkholderiales": 98,
101
+ "Buxales": 99,
102
+ "Calanoida": 100,
103
+ "Caldicellulosiruptorales": 101,
104
+ "Calobryales": 102,
105
+ "Camarodonta": 103,
106
+ "Campylobacterales": 104,
107
+ "Candidatus Brocadiales": 105,
108
+ "Candidatus Cenarchaeales": 106,
109
+ "Candidatus Cloacimonadales": 107,
110
+ "Candidatus Korarchaeales": 108,
111
+ "Candidatus Methanophagales": 109,
112
+ "Candidatus Odinarchaeales": 110,
113
+ "Candidatus Pelagibacterales": 111,
114
+ "Candidatus Thermobaculales": 112,
115
+ "Canellales": 113,
116
+ "Cantharellales": 114,
117
+ "Capnodiales": 115,
118
+ "Caprimulgiformes": 116,
119
+ "Carangiformes": 117,
120
+ "Carcharhiniformes": 118,
121
+ "Cardiida": 119,
122
+ "Cardiobacteriales": 120,
123
+ "Carnivora": 121,
124
+ "Carybdeida": 122,
125
+ "Caryophyllales": 123,
126
+ "Cassiduloida": 124,
127
+ "Casuariiformes": 125,
128
+ "Catenulisporales": 126,
129
+ "Caudata": 127,
130
+ "Caulobacterales": 128,
131
+ "Celastrales": 129,
132
+ "Cellvibrionales": 130,
133
+ "Centrarchiformes": 131,
134
+ "Ceramiales": 132,
135
+ "Ceratodontiformes": 133,
136
+ "Ceratophyllales": 134,
137
+ "Chaetodontiformes": 135,
138
+ "Chaetophorales": 136,
139
+ "Chaetosphaeriales": 137,
140
+ "Chaetothyriales": 138,
141
+ "Characiformes": 139,
142
+ "Charadriiformes": 140,
143
+ "Charales": 141,
144
+ "Chattonellales": 142,
145
+ "Cheilostomatida": 143,
146
+ "Chimaeriformes": 144,
147
+ "Chirodropida": 145,
148
+ "Chiroptera": 146,
149
+ "Chitinophagales": 147,
150
+ "Chitonida": 148,
151
+ "Chitovirales": 149,
152
+ "Chlamydiales": 150,
153
+ "Chlamydomonadales": 151,
154
+ "Chloranthales": 152,
155
+ "Chlorellales": 153,
156
+ "Chlorobiales": 154,
157
+ "Chlorodendrales": 155,
158
+ "Chloroflexales": 156,
159
+ "Chlorokybales": 157,
160
+ "Chondrillida": 158,
161
+ "Chromatiales": 159,
162
+ "Chromulinales": 160,
163
+ "Chroococcales": 161,
164
+ "Chrysiogenales": 162,
165
+ "Chthonomonadales": 163,
166
+ "Cichliformes": 164,
167
+ "Ciconiiformes": 165,
168
+ "Cingulata": 166,
169
+ "Cirlivirales": 167,
170
+ "Cladophorales": 168,
171
+ "Cladosporiales": 169,
172
+ "Clevelandellida": 170,
173
+ "Clionaida": 171,
174
+ "Clupeiformes": 172,
175
+ "Clypeasteroida": 173,
176
+ "Coccolithales": 174,
177
+ "Coccosphaerales": 175,
178
+ "Coelacanthiformes": 176,
179
+ "Coleochaetales": 177,
180
+ "Coleofasciculales": 178,
181
+ "Coleoptera": 179,
182
+ "Coliiformes": 180,
183
+ "Columbiformes": 181,
184
+ "Commelinales": 182,
185
+ "Copelata": 183,
186
+ "Coprothermobacterales": 184,
187
+ "Coraciiformes": 185,
188
+ "Corallimorpharia": 186,
189
+ "Corallinales": 187,
190
+ "Coriobacteriales": 188,
191
+ "Cornales": 189,
192
+ "Corticiales": 190,
193
+ "Craspedida": 191,
194
+ "Crassiclitellata": 192,
195
+ "Crassvirales": 193,
196
+ "Crocodylia": 194,
197
+ "Cryppavirales": 195,
198
+ "Cryptomonadales": 196,
199
+ "Cuculiformes": 197,
200
+ "Cucurbitales": 198,
201
+ "Cupressales": 199,
202
+ "Cyanidiales": 200,
203
+ "Cyanophorales": 201,
204
+ "Cyatheales": 202,
205
+ "Cycadales": 203,
206
+ "Cycloneritida": 204,
207
+ "Cyclophyllidea": 205,
208
+ "Cypriniformes": 206,
209
+ "Cyprinodontiformes": 207,
210
+ "Cystofilobasidiales": 208,
211
+ "Cytophagales": 209,
212
+ "Dasycladales": 210,
213
+ "Dasyuromorphia": 211,
214
+ "Decapoda": 212,
215
+ "Deferribacterales": 213,
216
+ "Dehalococcoidales": 214,
217
+ "Deinococcales": 215,
218
+ "Dendrochirotida": 216,
219
+ "Dermoptera": 217,
220
+ "Desmidiales": 218,
221
+ "Desulfarculales": 219,
222
+ "Desulfobacterales": 220,
223
+ "Desulfobulbales": 221,
224
+ "Desulfovibrionales": 222,
225
+ "Desulfurobacteriales": 223,
226
+ "Desulfurococcales": 224,
227
+ "Desulfuromonadales": 225,
228
+ "Diaporthales": 226,
229
+ "Dictyoglomales": 227,
230
+ "Dictyosteliales": 228,
231
+ "Dictyotales": 229,
232
+ "Didelphimorphia": 230,
233
+ "Dilleniales": 231,
234
+ "Dioscoreales": 232,
235
+ "Diphyllobothriidea": 233,
236
+ "Diphysciales": 234,
237
+ "Diplomonadida": 235,
238
+ "Diplostraca": 236,
239
+ "Dipodascales": 237,
240
+ "Diprotodontia": 238,
241
+ "Dipsacales": 239,
242
+ "Diptera": 240,
243
+ "Dothideales": 241,
244
+ "Durnavirales": 242,
245
+ "Echinorhynchida": 243,
246
+ "Ectocarpales": 244,
247
+ "Eggerthellales": 245,
248
+ "Elliovirales": 246,
249
+ "Elopiformes": 247,
250
+ "Elusimicrobiales": 248,
251
+ "Enchytraeida": 249,
252
+ "Endomicrobiales": 250,
253
+ "Enterobacterales": 251,
254
+ "Entomobryomorpha": 252,
255
+ "Entomoplasmatales": 253,
256
+ "Ephedrales": 254,
257
+ "Ephippiformes": 255,
258
+ "Equisetales": 256,
259
+ "Ericales": 257,
260
+ "Erysipelotrichales": 258,
261
+ "Erysiphales": 259,
262
+ "Esociformes": 260,
263
+ "Euamoebida": 261,
264
+ "Eubacteriales": 262,
265
+ "Eucoccidiorida": 263,
266
+ "Euglenales": 264,
267
+ "Euglyphida": 265,
268
+ "Eulipotyphla": 266,
269
+ "Eunicida": 267,
270
+ "Euonychophora": 268,
271
+ "Euphausiacea": 269,
272
+ "Euplotida": 270,
273
+ "Eupodiscales": 271,
274
+ "Eurotiales": 272,
275
+ "Fabales": 273,
276
+ "Fagales": 274,
277
+ "Falconiformes": 275,
278
+ "Fibrobacterales": 276,
279
+ "Filobasidiales": 277,
280
+ "Flavobacteriales": 278,
281
+ "Forcipulatida": 279,
282
+ "Frankiales": 280,
283
+ "Fucales": 281,
284
+ "Funariales": 282,
285
+ "Fusobacteriales": 283,
286
+ "Gadiformes": 284,
287
+ "Galdieriales": 285,
288
+ "Galliformes": 286,
289
+ "Garryales": 287,
290
+ "Geastrales": 288,
291
+ "Gemmatimonadales": 289,
292
+ "Gentianales": 290,
293
+ "Geobacterales": 291,
294
+ "Geodermatophilales": 292,
295
+ "Geplafuvirales": 293,
296
+ "Geraniales": 294,
297
+ "Ghabrivirales": 295,
298
+ "Gigartinales": 296,
299
+ "Ginkgoales": 297,
300
+ "Gleicheniales": 298,
301
+ "Gloeobacterales": 299,
302
+ "Gloeophyllales": 300,
303
+ "Glomerales": 301,
304
+ "Glomerellales": 302,
305
+ "Glycomycetales": 303,
306
+ "Gnetales": 304,
307
+ "Gobiiformes": 305,
308
+ "Golfingiida": 306,
309
+ "Gomontiellales": 307,
310
+ "Gonyaulacales": 308,
311
+ "Gracilariales": 309,
312
+ "Grimmiales": 310,
313
+ "Gruiformes": 311,
314
+ "Gunnerales": 312,
315
+ "Gymnodiniales": 313,
316
+ "Gymnophiona": 314,
317
+ "Gymnotiformes": 315,
318
+ "Haemosporida": 316,
319
+ "Halanaerobiales": 317,
320
+ "Haliangiales": 318,
321
+ "Halobacteriales": 319,
322
+ "Haloruvirales": 320,
323
+ "Haplosclerida": 321,
324
+ "Haptorida": 322,
325
+ "Hareavirales": 323,
326
+ "Harpacticoida": 324,
327
+ "Harpellales": 325,
328
+ "Helotiales": 326,
329
+ "Hemiptera": 327,
330
+ "Hepelivirales": 328,
331
+ "Herpesvirales": 329,
332
+ "Herpetosiphonales": 330,
333
+ "Heterodontiformes": 331,
334
+ "Heteronemertea": 332,
335
+ "Heterotrichida": 333,
336
+ "Hirudinida": 334,
337
+ "Holocentriformes": 335,
338
+ "Holosporales": 336,
339
+ "Homosclerophorida": 337,
340
+ "Hookeriales": 338,
341
+ "Hydrogenophilales": 339,
342
+ "Hymenochaetales": 340,
343
+ "Hymenophyllales": 341,
344
+ "Hymenoptera": 342,
345
+ "Hymenostomatida": 343,
346
+ "Hyphomicrobiales": 344,
347
+ "Hyphomonadales": 345,
348
+ "Hypnales": 346,
349
+ "Hypocreales": 347,
350
+ "Hyracoidea": 348,
351
+ "Icacinales": 349,
352
+ "Ignavibacteriales": 350,
353
+ "Imitervirales": 351,
354
+ "Isochrysidales": 352,
355
+ "Isoetales": 353,
356
+ "Isopoda": 354,
357
+ "Isosphaerales": 355,
358
+ "Istiophoriformes": 356,
359
+ "Ixodida": 357,
360
+ "Jakobida": 358,
361
+ "Jungermanniales": 359,
362
+ "Kalamavirales": 360,
363
+ "Kangiellales": 361,
364
+ "Kineosporiales": 362,
365
+ "Kitasatosporales": 363,
366
+ "Klebsormidiales": 364,
367
+ "Kosmotogales": 365,
368
+ "Kriegeriales": 366,
369
+ "Kurtiformes": 367,
370
+ "Labriformes": 368,
371
+ "Lachnospirales": 369,
372
+ "Lactobacillales": 370,
373
+ "Lagomorpha": 371,
374
+ "Lamiales": 372,
375
+ "Laminariales": 373,
376
+ "Lamniformes": 374,
377
+ "Lampriformes": 375,
378
+ "Laurales": 376,
379
+ "Lecanorales": 377,
380
+ "Lefavirales": 378,
381
+ "Legionellales": 379,
382
+ "Lepetellida": 380,
383
+ "Lepidoptera": 381,
384
+ "Leptolyngbyales": 382,
385
+ "Leptospirales": 383,
386
+ "Leptothecata": 384,
387
+ "Leucosporidiales": 385,
388
+ "Ligamenvirales": 386,
389
+ "Liliales": 387,
390
+ "Limnomedusae": 388,
391
+ "Lingulida": 389,
392
+ "Lipomycetales": 390,
393
+ "Lithobiomorpha": 391,
394
+ "Litopterna": 392,
395
+ "Littorinimorpha": 393,
396
+ "Lobata": 394,
397
+ "Longamoebia": 395,
398
+ "Lophiiformes": 396,
399
+ "Loxodida": 397,
400
+ "Lucinida": 398,
401
+ "Lycopodiales": 399,
402
+ "Lysobacterales": 400,
403
+ "Macroscelidea": 401,
404
+ "Magnaporthales": 402,
405
+ "Magnetococcales": 403,
406
+ "Magnoliales": 404,
407
+ "Malacalcyonacea": 405,
408
+ "Malasseziales": 406,
409
+ "Malpighiales": 407,
410
+ "Malvales": 408,
411
+ "Mamiellales": 409,
412
+ "Mantodea": 410,
413
+ "Mantophasmatodea": 411,
414
+ "Marattiales": 412,
415
+ "Marchantiales": 413,
416
+ "Maricaulales": 414,
417
+ "Martellivirales": 415,
418
+ "Mastigamoebida": 416,
419
+ "Mesostigmatales": 417,
420
+ "Methanobacteriales": 418,
421
+ "Methanobavirales": 419,
422
+ "Methanocellales": 420,
423
+ "Methanococcales": 421,
424
+ "Methanomassiliicoccales": 422,
425
+ "Methanomicrobiales": 423,
426
+ "Methanopyrales": 424,
427
+ "Methanosarcinales": 425,
428
+ "Methanotrichales": 426,
429
+ "Methylacidiphilales": 427,
430
+ "Methylococcales": 428,
431
+ "Metzgeriales": 429,
432
+ "Microascales": 430,
433
+ "Microbiotheria": 431,
434
+ "Microbotryales": 432,
435
+ "Micrococcales": 433,
436
+ "Micromonosporales": 434,
437
+ "Mindivirales": 435,
438
+ "Mischococcales": 436,
439
+ "Mividavirales": 437,
440
+ "Molpadida": 438,
441
+ "Monoblepharidales": 439,
442
+ "Mononegavirales": 440,
443
+ "Monotremata": 441,
444
+ "Moraxellales": 442,
445
+ "Mortierellales": 443,
446
+ "Mucorales": 444,
447
+ "Mugiliformes": 445,
448
+ "Mulpavirales": 446,
449
+ "Musophagiformes": 447,
450
+ "Mycobacteriales": 448,
451
+ "Mycoplasmatales": 449,
452
+ "Mycoplasmoidales": 450,
453
+ "Mycosphaerellales": 451,
454
+ "Myctophiformes": 452,
455
+ "Myida": 453,
456
+ "Myliobatiformes": 454,
457
+ "Myodocopida": 455,
458
+ "Myopsida": 456,
459
+ "Myriangiales": 457,
460
+ "Myrtales": 458,
461
+ "Mytilida": 459,
462
+ "Mytilinidiales": 460,
463
+ "Myxiniformes": 461,
464
+ "Myxococcales": 462,
465
+ "Myzostomida": 463,
466
+ "Naedrevirales": 464,
467
+ "Nakamurellales": 465,
468
+ "Nanoarchaeales": 466,
469
+ "Natranaerobiales": 467,
470
+ "Nautiliales": 468,
471
+ "Nautilida": 469,
472
+ "Naviculales": 470,
473
+ "Nectiopoda": 471,
474
+ "Neisseriales": 472,
475
+ "Neocallimastigales": 473,
476
+ "Neogastropoda": 474,
477
+ "Neomoorellales": 475,
478
+ "Nephroselmidales": 476,
479
+ "Nidovirales": 477,
480
+ "Nitrosomonadales": 478,
481
+ "Nitrosopumilales": 479,
482
+ "Nitrospinales": 480,
483
+ "Nitrospirales": 481,
484
+ "Nodamuvirales": 482,
485
+ "Nodosilineales": 483,
486
+ "Norzivirales": 484,
487
+ "Nostocales": 485,
488
+ "Notoryctemorphia": 486,
489
+ "Notoungulata": 487,
490
+ "Nuculanida sp.": 488,
491
+ "Nymphaeales": 489,
492
+ "Oceanospirillales": 490,
493
+ "Octopoda": 491,
494
+ "Odonata": 492,
495
+ "Oedogoniales": 493,
496
+ "Oegopsida": 494,
497
+ "Oltmannsiellopsidales": 495,
498
+ "Onygenales": 496,
499
+ "Opalinata": 497,
500
+ "Ophioglossales": 498,
501
+ "Ophiostomatales": 499,
502
+ "Opiliones": 500,
503
+ "Opisthocomiformes": 501,
504
+ "Opisthorchiida": 502,
505
+ "Opitutales": 503,
506
+ "Orbiliales": 504,
507
+ "Orectolobiformes": 505,
508
+ "Ortervirales": 506,
509
+ "Orthoptera": 507,
510
+ "Oscillatoriales": 508,
511
+ "Osmeriformes": 509,
512
+ "Osmundales": 510,
513
+ "Osteoglossiformes": 511,
514
+ "Ostreida": 512,
515
+ "Ourlivirales": 513,
516
+ "Oxalidales": 514,
517
+ "Oxyrrhinales": 515,
518
+ "Palmariales": 516,
519
+ "Pantevenvirales": 517,
520
+ "Parabodonida": 518,
521
+ "Parachela": 519,
522
+ "Parachlamydiales": 520,
523
+ "Passeriformes": 521,
524
+ "Pasteurellales": 522,
525
+ "Patatavirales": 523,
526
+ "Paucituberculata": 524,
527
+ "Pavlovales": 525,
528
+ "Pectinida": 526,
529
+ "Pedosphaerales": 527,
530
+ "Pelecaniformes": 528,
531
+ "Pelliales": 529,
532
+ "Peltigerales": 530,
533
+ "Peniculida": 531,
534
+ "Peptostreptococcales": 532,
535
+ "Peramelemorphia": 533,
536
+ "Perciformes": 534,
537
+ "Percopsiformes": 535,
538
+ "Peridiniales": 536,
539
+ "Perissodactyla": 537,
540
+ "Perkinsida": 538,
541
+ "Peronosporales": 539,
542
+ "Petitvirales": 540,
543
+ "Petromyzontiformes": 541,
544
+ "Petrotogales": 542,
545
+ "Pezizales": 543,
546
+ "Phaeomoniellales": 544,
547
+ "Phaffomycetales": 545,
548
+ "Phasmatodea": 546,
549
+ "Phlebobranchia": 547,
550
+ "Phoenicopteriformes": 548,
551
+ "Pholidota": 549,
552
+ "Phragmophora": 550,
553
+ "Phyllodocida": 551,
554
+ "Phymosomatoida": 552,
555
+ "Physariida": 553,
556
+ "Piccovirales": 554,
557
+ "Pichiales": 555,
558
+ "Piciformes": 556,
559
+ "Picornavirales": 557,
560
+ "Pilosa": 558,
561
+ "Pimascovirales": 559,
562
+ "Pinales": 560,
563
+ "Piperales": 561,
564
+ "Pirellulales": 562,
565
+ "Piroplasmida": 563,
566
+ "Plagiorchiida": 564,
567
+ "Planctomycetales": 565,
568
+ "Plasmodiophorida": 566,
569
+ "Pleosporales": 567,
570
+ "Pleuronectiformes": 568,
571
+ "Ploima": 569,
572
+ "Pneumocystales": 570,
573
+ "Poales": 571,
574
+ "Poduromorpha": 572,
575
+ "Polyangiales": 573,
576
+ "Polypodiales": 574,
577
+ "Polyporales": 575,
578
+ "Polypteriformes": 576,
579
+ "Polytrichales": 577,
580
+ "Porphyridiales": 578,
581
+ "Pottiales": 579,
582
+ "Prasiolales": 580,
583
+ "Priapulimorphida": 581,
584
+ "Primates": 582,
585
+ "Primavirales": 583,
586
+ "Proboscidea": 584,
587
+ "Procellariiformes": 585,
588
+ "Prochlorotrichales": 586,
589
+ "Promethearchaeales": 587,
590
+ "Propionibacteriales": 588,
591
+ "Prorocentrales": 589,
592
+ "Proteales": 590,
593
+ "Prymnesiales": 591,
594
+ "Pseudanabaenales": 592,
595
+ "Pseudoditrichales": 593,
596
+ "Pseudomonadales": 594,
597
+ "Pseudonocardiales": 595,
598
+ "Psilotales": 596,
599
+ "Psittaciformes": 597,
600
+ "Psocodea": 598,
601
+ "Pterioida": 599,
602
+ "Pucciniales": 600,
603
+ "Puniceicoccales": 601,
604
+ "Pyrenomonadales": 602,
605
+ "Pythiales": 603,
606
+ "Rajiformes": 604,
607
+ "Ranunculales": 605,
608
+ "Reovirales": 606,
609
+ "Rhabditida": 607,
610
+ "Rheiformes": 608,
611
+ "Rhizophydiales": 609,
612
+ "Rhizostomeae": 610,
613
+ "Rhodellales": 611,
614
+ "Rhodobacterales": 612,
615
+ "Rhodocyclales": 613,
616
+ "Rhodospirillales": 614,
617
+ "Rhodothalassiales": 615,
618
+ "Rhodothermales": 616,
619
+ "Rhodymeniales": 617,
620
+ "Rhynchobdellida": 618,
621
+ "Rickettsiales": 619,
622
+ "Rodentia": 620,
623
+ "Rosales": 621,
624
+ "Rowavirales": 622,
625
+ "Rubrobacterales": 623,
626
+ "Russulales": 624,
627
+ "Sabellida": 625,
628
+ "Saccharomycetales": 626,
629
+ "Saccharomycodales": 627,
630
+ "Salmoniformes": 628,
631
+ "Salviniales": 629,
632
+ "Sanitavirales": 630,
633
+ "Santalales": 631,
634
+ "Sapindales": 632,
635
+ "Saprolegniales": 633,
636
+ "Saprospirales": 634,
637
+ "Sarcoptiformes": 635,
638
+ "Saxifragales": 636,
639
+ "Scandentia": 637,
640
+ "Schizaeales": 638,
641
+ "Schizosaccharomycetales": 639,
642
+ "Scleractinia": 640,
643
+ "Scleralcyonacea": 641,
644
+ "Scolopendromorpha": 642,
645
+ "Scombriformes": 643,
646
+ "Scorpiones": 644,
647
+ "Scutigeromorpha": 645,
648
+ "Sebacinales": 646,
649
+ "Selaginellales": 647,
650
+ "Selenomonadales": 648,
651
+ "Semaeostomeae": 649,
652
+ "Semionotiformes": 650,
653
+ "Sepiida": 651,
654
+ "Sepolyvirales": 652,
655
+ "Serinales": 653,
656
+ "Siluriformes": 654,
657
+ "Siphonaptera": 655,
658
+ "Sirenia": 656,
659
+ "Sobelivirales": 657,
660
+ "Solanales": 658,
661
+ "Solirubrobacterales": 659,
662
+ "Sordariales": 660,
663
+ "Spariformes": 661,
664
+ "Sphaerobacterales": 662,
665
+ "Sphaerocarpales": 663,
666
+ "Sphaeropleales": 664,
667
+ "Sphagnales": 665,
668
+ "Sphenisciformes": 666,
669
+ "Sphenodontia": 667,
670
+ "Sphingobacteriales": 668,
671
+ "Sphingomonadales": 669,
672
+ "Spirochaetales": 670,
673
+ "Spirogyrales": 671,
674
+ "Spirulinales": 672,
675
+ "Spizellomycetales": 673,
676
+ "Splachnales": 674,
677
+ "Spongillida": 675,
678
+ "Sporadotrichida": 676,
679
+ "Sporidiobolales": 677,
680
+ "Squaliformes": 678,
681
+ "Squamata": 679,
682
+ "Stellavirales": 680,
683
+ "Stolidobranchia": 681,
684
+ "Stomiiformes": 682,
685
+ "Streptosporangiales": 683,
686
+ "Strigeidida": 684,
687
+ "Strigiformes": 685,
688
+ "Struthioniformes": 686,
689
+ "Stylommatophora": 687,
690
+ "Suberitida": 688,
691
+ "Suessiales": 689,
692
+ "Sulfolobales": 690,
693
+ "Suliformes": 691,
694
+ "Synbranchiformes": 692,
695
+ "Syndiniales": 693,
696
+ "Synechococcales": 694,
697
+ "Synergistales": 695,
698
+ "Syngnathiformes": 696,
699
+ "Syntrophales": 697,
700
+ "Syntrophobacterales": 698,
701
+ "Takakiales": 699,
702
+ "Temnopleuroida": 700,
703
+ "Terebellida": 701,
704
+ "Terriglobales": 702,
705
+ "Testudines": 703,
706
+ "Tetractinellida": 704,
707
+ "Tetraodontiformes": 705,
708
+ "Thalassiosirales": 706,
709
+ "Thelebolales": 707,
710
+ "Thelephorales": 708,
711
+ "Thermales": 709,
712
+ "Thermoanaerobacterales": 710,
713
+ "Thermococcales": 711,
714
+ "Thermodesulfobacteriales": 712,
715
+ "Thermodesulfovibrionales": 713,
716
+ "Thermofilales": 714,
717
+ "Thermoleophilales": 715,
718
+ "Thermomicrobiales": 716,
719
+ "Thermoplasmatales": 717,
720
+ "Thermoproteales": 718,
721
+ "Thermosediminibacterales": 719,
722
+ "Thermostichales": 720,
723
+ "Thermosulfidibacterales": 721,
724
+ "Thermotogales": 722,
725
+ "Thiotrichales": 723,
726
+ "Thraustochytrida": 724,
727
+ "Thysanoptera": 725,
728
+ "Tinamiformes": 726,
729
+ "Tissierellales": 727,
730
+ "Tolivirales": 728,
731
+ "Tombendovirales": 729,
732
+ "Torpediniformes": 730,
733
+ "Trachichthyiformes": 731,
734
+ "Tremellales": 732,
735
+ "Trichinellida": 733,
736
+ "Trichomonadida": 734,
737
+ "Trichoplacea": 735,
738
+ "Trichosporonales": 736,
739
+ "Tricladida": 737,
740
+ "Trigonopsidales": 738,
741
+ "Tritrichomonadida": 739,
742
+ "Trochida": 740,
743
+ "Trochodendrales": 741,
744
+ "Trogoniformes": 742,
745
+ "Trombidiformes": 743,
746
+ "Trueperales": 744,
747
+ "Trypanosomatida": 745,
748
+ "Trypetheliales": 746,
749
+ "Tubificida": 747,
750
+ "Tubulavirales": 748,
751
+ "Tubulidentata": 749,
752
+ "Tymovirales": 750,
753
+ "Ulotrichales": 751,
754
+ "Ulvales": 752,
755
+ "Umbelopsidales": 753,
756
+ "Unionida": 754,
757
+ "Uranoscopiformes": 755,
758
+ "Ustilaginales": 756,
759
+ "Valvatida": 757,
760
+ "Vaucheriales": 758,
761
+ "Veillonellales": 759,
762
+ "Velatida": 760,
763
+ "Venerida": 761,
764
+ "Venturiales": 762,
765
+ "Verongiida": 763,
766
+ "Verrucomicrobiales": 764,
767
+ "Vibrionales": 765,
768
+ "Vinavirales": 766,
769
+ "Vitales": 767,
770
+ "Wallemiales": 768,
771
+ "Welwitschiales": 769,
772
+ "Winmispirales": 770,
773
+ "Wolframvirales": 771,
774
+ "Xenopneusta": 772,
775
+ "Xiphosura": 773,
776
+ "Xylariales": 774,
777
+ "Zeiformes": 775,
778
+ "Zingiberales": 776,
779
+ "Zoantharia": 777,
780
+ "Zurhausenvirales": 778,
781
+ "Zygentoma": 779,
782
+ "Zygnematales": 780,
783
+ "Zygophyllales": 781
784
+ }
dataset/taxon_embedding/vocab/phylum_vocab.json ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<UNK>": 0,
3
+ "Acanthocephala": 1,
4
+ "Acidobacteriota": 2,
5
+ "Actinomycetota": 3,
6
+ "Annelida": 4,
7
+ "Apicomplexa": 5,
8
+ "Aquificota": 6,
9
+ "Armatimonadota": 7,
10
+ "Arthropoda": 8,
11
+ "Artverviricota": 9,
12
+ "Ascomycota": 10,
13
+ "Bacillariophyta": 11,
14
+ "Bacillota": 12,
15
+ "Bacteroidota": 13,
16
+ "Basidiomycota": 14,
17
+ "Bdellovibrionota": 15,
18
+ "Blastocladiomycota": 16,
19
+ "Brachiopoda": 17,
20
+ "Bryozoa": 18,
21
+ "Campylobacterota": 19,
22
+ "Candidatus Bipolaricaulota": 20,
23
+ "Candidatus Cloacimonadota": 21,
24
+ "Candidatus Fraseribacteriota": 22,
25
+ "Candidatus Handelsmaniibacteriota": 23,
26
+ "Candidatus Heimdallarchaeota": 24,
27
+ "Candidatus Odinarchaeota": 25,
28
+ "Candidatus Terryibacteriota": 26,
29
+ "Candidatus Thorarchaeota": 27,
30
+ "Candidatus Yanofskyibacteriota": 28,
31
+ "Cercozoa": 29,
32
+ "Chaetognatha": 30,
33
+ "Chlamydiota": 31,
34
+ "Chlorobiota": 32,
35
+ "Chloroflexota": 33,
36
+ "Chlorophyta": 34,
37
+ "Chordata": 35,
38
+ "Chrysiogenota": 36,
39
+ "Chytridiomycota": 37,
40
+ "Ciliophora": 38,
41
+ "Cnidaria": 39,
42
+ "Commensaviricota": 40,
43
+ "Coprothermobacterota": 41,
44
+ "Cossaviricota": 42,
45
+ "Cressdnaviricota": 43,
46
+ "Ctenophora": 44,
47
+ "Cyanobacteriota": 45,
48
+ "Deferribacterota": 46,
49
+ "Deinococcota": 47,
50
+ "Dictyoglomota": 48,
51
+ "Discosea": 49,
52
+ "Duplornaviricota": 50,
53
+ "Echinodermata": 51,
54
+ "Elusimicrobiota": 52,
55
+ "Endomyxa": 53,
56
+ "Entoprocta": 54,
57
+ "Euglenozoa": 55,
58
+ "Evosea": 56,
59
+ "Fibrobacterota": 57,
60
+ "Foraminifera": 58,
61
+ "Fornicata": 59,
62
+ "Fusobacteriota": 60,
63
+ "Gemmatimonadota": 61,
64
+ "Haptophyta": 62,
65
+ "Hemichordata": 63,
66
+ "Heterolobosea": 64,
67
+ "Hofneiviricota": 65,
68
+ "Ignavibacteriota": 66,
69
+ "Kitrinoviricota": 67,
70
+ "Lenarviricota": 68,
71
+ "Methanobacteriota": 69,
72
+ "Microcaldota": 70,
73
+ "Microsporidia": 71,
74
+ "Mollusca": 72,
75
+ "Mucoromycota": 73,
76
+ "Mycoplasmatota": 74,
77
+ "Myxococcota": 75,
78
+ "Nanobdellota": 76,
79
+ "Negarnaviricota": 77,
80
+ "Nematoda": 78,
81
+ "Nemertea": 79,
82
+ "Nitrososphaerota": 80,
83
+ "Nitrospinota": 81,
84
+ "Nitrospirota": 82,
85
+ "Nucleocytoviricota": 83,
86
+ "Onychophora": 84,
87
+ "Oomycota": 85,
88
+ "Parabasalia": 86,
89
+ "Peploviricota": 87,
90
+ "Perkinsozoa": 88,
91
+ "Phixviricota": 89,
92
+ "Pisuviricota": 90,
93
+ "Placozoa": 91,
94
+ "Planctomycetota": 92,
95
+ "Platyhelminthes": 93,
96
+ "Porifera": 94,
97
+ "Preplasmiviricota": 95,
98
+ "Priapulida": 96,
99
+ "Produgelaviricota": 97,
100
+ "Promethearchaeota": 98,
101
+ "Pseudomonadota": 99,
102
+ "Rhodophyta": 100,
103
+ "Rhodothermota": 101,
104
+ "Rotifera": 102,
105
+ "Saleviricota": 103,
106
+ "Spirochaetota": 104,
107
+ "Streptophyta": 105,
108
+ "Synergistota": 106,
109
+ "Taleaviricota": 107,
110
+ "Tardigrada": 108,
111
+ "Thermodesulfobacteriota": 109,
112
+ "Thermomicrobiota": 110,
113
+ "Thermoplasmatota": 111,
114
+ "Thermoproteota": 112,
115
+ "Thermosulfidibacterota": 113,
116
+ "Thermotogota": 114,
117
+ "Tubulinea": 115,
118
+ "Uroviricota": 116,
119
+ "Verrucomicrobiota": 117,
120
+ "Xenacoelomorpha": 118,
121
+ "Zoopagomycota": 119
122
+ }
dataset/taxon_embedding/vocab/species_vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
dataset/taxon_embedding/vocab/subspecies_vocab.json ADDED
@@ -0,0 +1,2111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<UNK>": 0,
3
+ "Acanthamoeba castellanii str. Neff": 1,
4
+ "Acaryochloris marina MBIC11017": 2,
5
+ "Acetivibrio thermocellus ATCC 27405": 3,
6
+ "Acetoanaerobium sticklandii DSM 519": 4,
7
+ "Acetobacterium woodii DSM 1030": 5,
8
+ "Acetohalobium arabaticum DSM 5501": 6,
9
+ "Acholeplasma laidlawii PG-8A": 7,
10
+ "Achromobacter xylosoxidans A8": 8,
11
+ "Acidaminococcus fermentans DSM 20731": 9,
12
+ "Acidianus hospitalis W1": 10,
13
+ "Acidilobus saccharovorans 345-15": 11,
14
+ "Acidimicrobium ferrooxidans DSM 10331": 12,
15
+ "Acidiphilium cryptum JF-5": 13,
16
+ "Acidiphilium multivorum AIU301": 14,
17
+ "Acidithiobacillus caldus ATCC 51756": 15,
18
+ "Acidithiobacillus ferrooxidans ATCC 23270": 16,
19
+ "Acidithiobacillus ferrooxidans ATCC 53993": 17,
20
+ "Acidobacterium capsulatum ATCC 51196": 18,
21
+ "Acidothermus cellulolyticus 11B": 19,
22
+ "Aciduliprofundum boonei T469": 20,
23
+ "Acinetobacter baumannii 1295743": 21,
24
+ "Acinetobacter baumannii 532279": 22,
25
+ "Acinetobacter baumannii AB0057": 23,
26
+ "Acinetobacter baumannii AB307-0294": 24,
27
+ "Acinetobacter baumannii ACICU": 25,
28
+ "Acinetobacter baumannii ATCC 17978": 26,
29
+ "Acinetobacter baumannii ATCC 19606 = CIP 70.34 = JCM 6841": 27,
30
+ "Acinetobacter baumannii AYE": 28,
31
+ "Acinetobacter baumannii IS-123": 29,
32
+ "Acinetobacter baumannii MDR-ZJ06": 30,
33
+ "Acinetobacter baumannii SDF": 31,
34
+ "Acinetobacter baylyi ADP1": 32,
35
+ "Acinetobacter calcoaceticus subsp. anitratus": 33,
36
+ "Acinetobacter oleivorans DR1": 34,
37
+ "Acinetobacter pittii PHEA-2": 35,
38
+ "Acinetobacter venetianus RAG-1 = CIP 110063": 36,
39
+ "Actinobacillus pleuropneumoniae serovar 3 str. JL03": 37,
40
+ "Actinobacillus pleuropneumoniae serovar 5b str. L20": 38,
41
+ "Actinobacillus pleuropneumoniae serovar 7 str. AP76": 39,
42
+ "Actinobacillus succinogenes 130Z": 40,
43
+ "Actinomyces naeslundii str. Howell 279": 41,
44
+ "Actinomycetospora chiangmaiensis DSM 45062": 42,
45
+ "Actinoplanes missouriensis 431": 43,
46
+ "Actinosynnema mirum DSM 43827": 44,
47
+ "Actinosynnema pretiosum subsp. auranticum": 45,
48
+ "Advenella mimigardefordensis DPN7": 46,
49
+ "Aegilops tauschii subsp. strangulata": 47,
50
+ "Aerococcus viridans ATCC 11563 = CCUG 4311": 48,
51
+ "Aeromicrobium erythreum (NRRL B-3381)": 49,
52
+ "Aeromonas hydrophila subsp. hydrophila ATCC 7966": 50,
53
+ "Aeromonas salmonicida subsp. salmonicida": 51,
54
+ "Aeromonas salmonicida subsp. salmonicida A449": 52,
55
+ "Aeromonas veronii B565": 53,
56
+ "Aeropyrum pernix K1": 54,
57
+ "Afipia carboxidovorans OM5": 55,
58
+ "Agathobacter rectalis ATCC 33656": 56,
59
+ "Aggregatibacter actinomycetemcomitans D11S-1": 57,
60
+ "Aggregatibacter aphrophilus NJ8700": 58,
61
+ "Agkistrodon contortrix contortrix": 59,
62
+ "Agkistrodon piscivorus leucostoma": 60,
63
+ "Agkistrodon piscivorus piscivorus": 61,
64
+ "Agrobacterium fabrum str. C58": 62,
65
+ "Agrobacterium tumefaciens (strain 15955)": 63,
66
+ "Agrobacterium tumefaciens (strain Ach5)": 64,
67
+ "Agrobacterium tumefaciens (strain B2A)": 65,
68
+ "Agrobacterium tumefaciens (strain II CHRYS)": 66,
69
+ "Agrobacterium tumefaciens (strain RS5)": 67,
70
+ "Agrobacterium tumefaciens (strain T37)": 68,
71
+ "Agrobacterium tumefaciens (strain apple 185)": 69,
72
+ "Akkermansia muciniphila ATCC BAA-835": 70,
73
+ "Akodon lutescens puer": 71,
74
+ "Alcanivorax borkumensis SK2": 72,
75
+ "Alces alces alces": 73,
76
+ "Alces alces cameloides": 74,
77
+ "Aliarcobacter butzleri RM4018": 75,
78
+ "Alicycliphilus denitrificans K601": 76,
79
+ "Alicyclobacillus acidocaldarius subsp. acidocaldarius": 77,
80
+ "Alicyclobacillus acidocaldarius subsp. acidocaldarius DSM 446": 78,
81
+ "Alicyclobacillus acidoterrestris ATCC 49025": 79,
82
+ "Aliivibrio fischeri ES114": 80,
83
+ "Aliivibrio fischeri MJ11": 81,
84
+ "Aliivibrio salmonicida LFI1238": 82,
85
+ "Alkalihalophilus pseudofirmus OF4": 83,
86
+ "Alkalilimnicola ehrlichii MLHE-1": 84,
87
+ "Alkaliphilus metalliredigens QYMF": 85,
88
+ "Alkaliphilus oremlandii OhILAs": 86,
89
+ "Allochromatium vinosum DSM 180": 87,
90
+ "Allomeiothermus silvanus DSM 9946": 88,
91
+ "Allorhizobium ampelinum S4": 89,
92
+ "Alteracholeplasma palmae J233": 90,
93
+ "Alteromonas mediterranea DE": 91,
94
+ "Amanita muscaria Koide BX008": 92,
95
+ "Aminobacterium colombiense DSM 12261": 93,
96
+ "Amphibacillus xylanus NBRC 15112": 94,
97
+ "Amycolatopsis mediterranei S699": 95,
98
+ "Amycolatopsis mediterranei U32": 96,
99
+ "Anaerococcus prevotii DSM 20548": 97,
100
+ "Anaerolinea thermophila UNI-1": 98,
101
+ "Anaeromyxobacter dehalogenans 2CP-1": 99,
102
+ "Anaeromyxobacter dehalogenans 2CP-C": 100,
103
+ "Anaerostipes caccae L1-92": 101,
104
+ "Anaplasma marginale str. Florida": 102,
105
+ "Anaplasma marginale str. Illinois": 103,
106
+ "Anaplasma marginale str. St. Maries": 104,
107
+ "Anaplasma marginale str. Virginia": 105,
108
+ "Anaplasma phagocytophilum str. HZ": 106,
109
+ "Anas platyrhynchos platyrhynchos": 107,
110
+ "Ancylobacter novellus DSM 506": 108,
111
+ "Androctonus mauritanicus mauritanicus": 109,
112
+ "Anoxybacillus flavithermus WK1": 110,
113
+ "Anser anser anser": 111,
114
+ "Anterhynchium flavomarginatum micado": 112,
115
+ "Aotus azarai infulatus": 113,
116
+ "Aphanizomenon flos-aquae 2012/KM1/D3": 114,
117
+ "Apis cerana cerana": 115,
118
+ "Apis mellifera carnica": 116,
119
+ "Apis mellifera ligustica": 117,
120
+ "Apis mellifera scutellata": 118,
121
+ "Aquifex aeolicus VF5": 119,
122
+ "Aquipseudomonas alcaligenes NBRC 14159": 120,
123
+ "Arabidopsis halleri subsp. gemmifera": 121,
124
+ "Arabidopsis halleri subsp. halleri": 122,
125
+ "Arabidopsis lyrata subsp. lyrata": 123,
126
+ "Arabidopsis lyrata subsp. petraea": 124,
127
+ "Arcanobacterium haemolyticum DSM 20595": 125,
128
+ "Archaeoglobus fulgidus DSM 4304": 126,
129
+ "Archaeoglobus profundus DSM 5631": 127,
130
+ "Arcobacter nitrofigilis DSM 7299": 128,
131
+ "Aromatoleum aromaticum EbN1": 129,
132
+ "Arthrobacter globiformis NBRC 12137": 130,
133
+ "Artibeus glaucus watsoni": 131,
134
+ "Ascidia sydneiensis samea": 132,
135
+ "Aspergillus aculeatus ATCC 16872": 133,
136
+ "Aspergillus brasiliensis CBS 101740": 134,
137
+ "Aspergillus campestris IBT 28561": 135,
138
+ "Aspergillus carbonarius ITEM 5010": 136,
139
+ "Aspergillus clavatus NRRL 1": 137,
140
+ "Aspergillus eucalypticola CBS 122712": 138,
141
+ "Aspergillus fischeri NRRL 181": 139,
142
+ "Aspergillus flavus AF70": 140,
143
+ "Aspergillus flavus NRRL3357": 141,
144
+ "Aspergillus fumigatus A1163": 142,
145
+ "Aspergillus fumigatus Af293": 143,
146
+ "Aspergillus homomorphus CBS 101889": 144,
147
+ "Aspergillus luchuensis CBS 106.47": 145,
148
+ "Aspergillus luchuensis IFO 4308": 146,
149
+ "Aspergillus neoniger CBS 115656": 147,
150
+ "Aspergillus nidulans FGSC A4": 148,
151
+ "Aspergillus niger ATCC 1015": 149,
152
+ "Aspergillus niger CBS 101883": 150,
153
+ "Aspergillus niger CBS 513.88": 151,
154
+ "Aspergillus nomiae NRRL 13137": 152,
155
+ "Aspergillus novofumigatus IBT 16806": 153,
156
+ "Aspergillus oryzae 3.042": 154,
157
+ "Aspergillus oryzae RIB40": 155,
158
+ "Aspergillus parasiticus SU-1": 156,
159
+ "Aspergillus ruber CBS 135680": 157,
160
+ "Aspergillus sclerotiicarbonarius CBS 121057": 158,
161
+ "Aspergillus terreus NIH2624": 159,
162
+ "Aspergillus tubingensis CBS 134.48": 160,
163
+ "Aspergillus vadensis CBS 113365": 161,
164
+ "Aspergillus violaceofuscus CBS 115571": 162,
165
+ "Aster yellows witches'-broom phytoplasma AYWB": 163,
166
+ "Asticcacaulis excentricus CB 48": 164,
167
+ "Ateles fusciceps robustus": 165,
168
+ "Athroisma gracile subsp. psyllioides": 166,
169
+ "Atractaspis microlepidota microlepidota": 167,
170
+ "Aurantimonas manganoxydans SI85-9A1": 168,
171
+ "Auricularia subglabra TFB-10046 SS5": 169,
172
+ "Azorhizobium caulinodans ORS 571": 170,
173
+ "Azospira oryzae PS": 171,
174
+ "Azospirillum lipoferum 4B": 172,
175
+ "Azotobacter chroococcum (strain mcd 1)": 173,
176
+ "Azotobacter vinelandii DJ": 174,
177
+ "Bacillus amyloliquefaciens DSM 7 = ATCC 23350": 175,
178
+ "Bacillus anthracis str. A0248": 176,
179
+ "Bacillus anthracis str. CDC 684": 177,
180
+ "Bacillus atrophaeus 1942": 178,
181
+ "Bacillus cereus 03BB102": 179,
182
+ "Bacillus cereus AH187": 180,
183
+ "Bacillus cereus AH820": 181,
184
+ "Bacillus cereus ATCC 10987": 182,
185
+ "Bacillus cereus ATCC 14579": 183,
186
+ "Bacillus cereus B4264": 184,
187
+ "Bacillus cereus E33L": 185,
188
+ "Bacillus cereus G9842": 186,
189
+ "Bacillus cereus H3081.97": 187,
190
+ "Bacillus cereus HuB5-5": 188,
191
+ "Bacillus cereus MSX-D12": 189,
192
+ "Bacillus cereus Q1": 190,
193
+ "Bacillus cereus VD014": 191,
194
+ "Bacillus cereus VD045": 192,
195
+ "Bacillus cereus VD146": 193,
196
+ "Bacillus cytotoxicus NVH 391-98": 194,
197
+ "Bacillus licheniformis DSM 13 = ATCC 14580": 195,
198
+ "Bacillus methanolicus MGA3": 196,
199
+ "Bacillus mycoides KBAB4": 197,
200
+ "Bacillus paralicheniformis ATCC 9945a": 198,
201
+ "Bacillus pumilus ATCC 7061": 199,
202
+ "Bacillus pumilus SAFR-032": 200,
203
+ "Bacillus spizizenii TU-B-10": 201,
204
+ "Bacillus spizizenii str. W23": 202,
205
+ "Bacillus subtilis BSn5": 203,
206
+ "Bacillus subtilis subsp. amylosacchariticus": 204,
207
+ "Bacillus subtilis subsp. natto": 205,
208
+ "Bacillus subtilis subsp. natto BEST195": 206,
209
+ "Bacillus subtilis subsp. subtilis str. 168": 207,
210
+ "Bacillus thuringiensis BMB171": 208,
211
+ "Bacillus thuringiensis serovar kurstaki str. HD73": 209,
212
+ "Bacillus thuringiensis str. Al Hakam": 210,
213
+ "Bacillus velezensis FZB42": 211,
214
+ "Bacillus velezensis YAU B9601-Y2": 212,
215
+ "Bacteroides fragilis 638R": 213,
216
+ "Bacteroides fragilis NCTC 9343": 214,
217
+ "Bacteroides fragilis YCH46": 215,
218
+ "Bacteroides helcogenes P 36-108": 216,
219
+ "Bacteroides ovatus ATCC 8483": 217,
220
+ "Bacteroides thetaiotaomicron VPI-5482": 218,
221
+ "Bacteroides uniformis ATCC 8492": 219,
222
+ "Balaenoptera acutorostrata scammoni": 220,
223
+ "Bartonella bacilliformis KC583": 221,
224
+ "Bartonella grahamii as4aup": 222,
225
+ "Bartonella henselae str. Houston-1": 223,
226
+ "Bartonella quintana str. Toulouse": 224,
227
+ "Bartonella schoenbuchensis R1": 225,
228
+ "Bartonella tribocorum CIP 105476": 226,
229
+ "Bartonella vinsonii subsp. berkhoffii": 227,
230
+ "Batrachochytrium dendrobatidis JAM81": 228,
231
+ "Baumannia cicadellinicola str. Hc (Homalodisca coagulata)": 229,
232
+ "Bdellovibrio bacteriovorus HD100": 230,
233
+ "Beauveria bassiana ARSEF 2860": 231,
234
+ "Beijerinckia indica subsp. indica ATCC 9039": 232,
235
+ "Beta vulgaris subsp. maritima": 233,
236
+ "Beta vulgaris subsp. vulgaris": 234,
237
+ "Beutenbergia cavernae DSM 12333": 235,
238
+ "Bifidobacterium adolescentis ATCC 15703": 236,
239
+ "Bifidobacterium animalis subsp. lactis AD011": 237,
240
+ "Bifidobacterium animalis subsp. lactis BB-12": 238,
241
+ "Bifidobacterium animalis subsp. lactis Bl-04": 239,
242
+ "Bifidobacterium animalis subsp. lactis DSM 10140": 240,
243
+ "Bifidobacterium bifidum JCM 1254": 241,
244
+ "Bifidobacterium breve ACS-071-V-Sch8b": 242,
245
+ "Bifidobacterium breve UCC2003": 243,
246
+ "Bifidobacterium dentium Bd1": 244,
247
+ "Bifidobacterium longum DJO10A": 245,
248
+ "Bifidobacterium longum NCC2705": 246,
249
+ "Bifidobacterium longum subsp. infantis": 247,
250
+ "Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088": 248,
251
+ "Bifidobacterium longum subsp. longum": 249,
252
+ "Bifidobacterium longum subsp. longum JCM 1217": 250,
253
+ "Bilophila wadsworthia 3_1_6": 251,
254
+ "Bipolaris maydis ATCC 48331": 252,
255
+ "Bipolaris maydis C5": 253,
256
+ "Bipolaris sorokiniana ND90Pr": 254,
257
+ "Bipolaris victoriae FI3": 255,
258
+ "Bipolaris zeicola 26-R-13": 256,
259
+ "Bison bison bison": 257,
260
+ "Blastomyces dermatitidis ER-3": 258,
261
+ "Blastomyces gilchristii SLH14081": 259,
262
+ "Blattabacterium sp. (Periplaneta americana) str. BPLAN": 260,
263
+ "Blautia hydrogenotrophica DSM 10507": 261,
264
+ "Blumeria hordei DH14": 262,
265
+ "Bordetella avium 197N": 263,
266
+ "Bordetella bronchiseptica RB50": 264,
267
+ "Bordetella parapertussis 12822": 265,
268
+ "Bordetella pertussis 18323": 266,
269
+ "Bordetella pertussis CS": 267,
270
+ "Bordetella petrii DSM 12804": 268,
271
+ "Borrelia duttonii Ly": 269,
272
+ "Borrelia hermsii DAH": 270,
273
+ "Borrelia recurrentis A1": 271,
274
+ "Borrelia turicatae 91E135": 272,
275
+ "Borreliella afzelii PKo": 273,
276
+ "Borreliella bavariensis PBi": 274,
277
+ "Borreliella bissettiae DN127": 275,
278
+ "Borreliella burgdorferi B31": 276,
279
+ "Borreliella burgdorferi JD1": 277,
280
+ "Borreliella burgdorferi N40": 278,
281
+ "Borreliella burgdorferi ZS7": 279,
282
+ "Bothrops bilineatus smaragdinus": 280,
283
+ "Bothrops neuwiedi urutu": 281,
284
+ "Botryobasidium botryosum FD-172 SS1": 282,
285
+ "Botrytis cinerea B05.10": 283,
286
+ "Botrytis cinerea BcDW1": 284,
287
+ "Botrytis cinerea T4": 285,
288
+ "Brachybacterium faecium DSM 4810": 286,
289
+ "Brachyphylla nana pumila": 287,
290
+ "Brachyspira hyodysenteriae WA1": 288,
291
+ "Bradyrhizobium diazoefficiens USDA 110": 289,
292
+ "Brassica rapa subsp. chinensis": 290,
293
+ "Brassica rapa subsp. pekinensis": 291,
294
+ "Brassica rapa subsp. rapa": 292,
295
+ "Brevibacillus brevis NBRC 100599": 293,
296
+ "Brevundimonas diminuta ATCC 11568": 294,
297
+ "Brucella abortus 2308": 295,
298
+ "Brucella abortus S19": 296,
299
+ "Brucella abortus bv. 1 str. 9-941": 297,
300
+ "Brucella anthropi ATCC 49188": 298,
301
+ "Brucella canis ATCC 23365": 299,
302
+ "Brucella melitensis ATCC 23457": 300,
303
+ "Brucella melitensis bv. 1 str. 16M": 301,
304
+ "Brucella ovis ATCC 25840": 302,
305
+ "Brucella suis 1330": 303,
306
+ "Brucella suis ATCC 23445": 304,
307
+ "Bryonia cretica subsp. dioica": 305,
308
+ "Buchnera aphidicola BCc": 306,
309
+ "Buchnera aphidicola str. 5A (Acyrthosiphon pisum)": 307,
310
+ "Buchnera aphidicola str. APS (Acyrthosiphon pisum)": 308,
311
+ "Buchnera aphidicola str. Bp (Baizongia pistaciae)": 309,
312
+ "Buchnera aphidicola str. Sg (Schizaphis graminum)": 310,
313
+ "Buchnera aphidicola str. Tuc7 (Acyrthosiphon pisum)": 311,
314
+ "Bufo gargarizans andrewsi": 312,
315
+ "Bungarus flaviceps flaviceps": 313,
316
+ "Burkholderia ambifaria AMMD": 314,
317
+ "Burkholderia ambifaria MC40-6": 315,
318
+ "Burkholderia cenocepacia H111": 316,
319
+ "Burkholderia cenocepacia HI2424": 317,
320
+ "Burkholderia cenocepacia J2315": 318,
321
+ "Burkholderia mallei ATCC 23344": 319,
322
+ "Burkholderia mallei NCTC 10229": 320,
323
+ "Burkholderia mallei NCTC 10247": 321,
324
+ "Burkholderia mallei SAVP1": 322,
325
+ "Burkholderia multivorans ATCC 17616": 323,
326
+ "Burkholderia orbicola AU 1054": 324,
327
+ "Burkholderia orbicola MC0-3": 325,
328
+ "Burkholderia pseudomallei 1026b": 326,
329
+ "Burkholderia pseudomallei 1106a": 327,
330
+ "Burkholderia pseudomallei 1106b": 328,
331
+ "Burkholderia pseudomallei 1710b": 329,
332
+ "Burkholderia pseudomallei 668": 330,
333
+ "Burkholderia pseudomallei K96243": 331,
334
+ "Burkholderia thailandensis E264": 332,
335
+ "Burkholderia vietnamiensis G4": 333,
336
+ "Buthus occitanus mardochei": 334,
337
+ "Buthus occitanus tunetanus": 335,
338
+ "Caiman crocodilus apaporiensis": 336,
339
+ "Caldalkalibacillus mannanilyticus JCM 10596": 337,
340
+ "Caldalkalibacillus thermarum TA2.A1": 338,
341
+ "Caldanaerobacter subterraneus subsp. tengcongensis MB4": 339,
342
+ "Caldanaerobacter subterraneus subsp. yonseiensis": 340,
343
+ "Caldicellulosiruptor bescii DSM 6725": 341,
344
+ "Caldicellulosiruptor owensensis OL": 342,
345
+ "Caldicellulosiruptor saccharolyticus DSM 8903": 343,
346
+ "Calditerrivibrio nitroreducens DSM 19672": 344,
347
+ "Caldivirga maquilingensis IC-167": 345,
348
+ "Callicebus personatus nigrifrons": 346,
349
+ "Callicebus personatus personatus": 347,
350
+ "Callipepla squamata castanogastris": 348,
351
+ "Callipepla squamata pallida": 349,
352
+ "Campylobacter concisus 13826": 350,
353
+ "Campylobacter curvus 525.92": 351,
354
+ "Campylobacter fetus subsp. fetus 82-40": 352,
355
+ "Campylobacter hominis ATCC BAA-381": 353,
356
+ "Campylobacter jejuni RM1221": 354,
357
+ "Campylobacter jejuni subsp. doylei 269.97": 355,
358
+ "Campylobacter jejuni subsp. jejuni 81-176": 356,
359
+ "Campylobacter jejuni subsp. jejuni 81116": 357,
360
+ "Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819": 358,
361
+ "Campylobacter lari RM2100": 359,
362
+ "Candida albicans SC5314": 360,
363
+ "Candida albicans WO-1": 361,
364
+ "Candida dubliniensis CD36": 362,
365
+ "Candida parapsilosis CDC317": 363,
366
+ "Candida tropicalis MYA-3404": 364,
367
+ "Candidatus Amoebophilus asiaticus 5a2": 365,
368
+ "Candidatus Blochmanniella pennsylvanica str. BPEN": 366,
369
+ "Candidatus Carsonella ruddii PV": 367,
370
+ "Candidatus Cloacimonas acidaminovorans str. Evry": 368,
371
+ "Candidatus Desulforudis audaxviator MP104C": 369,
372
+ "Candidatus Karelsulcia muelleri DMIN": 370,
373
+ "Candidatus Karelsulcia muelleri GWSS": 371,
374
+ "Candidatus Karelsulcia muelleri SMDSEM": 372,
375
+ "Candidatus Korarchaeum cryptofilum OPF8": 373,
376
+ "Candidatus Liberibacter africanus subsp. capensis": 374,
377
+ "Candidatus Liberibacter asiaticus str. psy62": 375,
378
+ "Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1": 376,
379
+ "Candidatus Methanomethylophilus alvi Mx1201": 377,
380
+ "Candidatus Moranella endobia PCIT": 378,
381
+ "Candidatus Pelagibacter ubique HTCC1002": 379,
382
+ "Candidatus Pelagibacter ubique HTCC1062": 380,
383
+ "Candidatus Phytoplasma mali AT": 381,
384
+ "Candidatus Protochlamydia amoebophila UWE25": 382,
385
+ "Candidatus Riesia pediculicola USDA": 383,
386
+ "Candidatus Ruthia magnifica str. Cm (Calyptogena magnifica)": 384,
387
+ "Candidatus Zinderia insecticola CARI": 385,
388
+ "Canis lupus familiaris": 386,
389
+ "Canis mesomelas elongae": 387,
390
+ "Capnocytophaga canimorsus Cc5": 388,
391
+ "Capnocytophaga gingivalis ATCC 33624": 389,
392
+ "Capnocytophaga granulosa ATCC 51502": 390,
393
+ "Capnocytophaga ochracea DSM 7271": 391,
394
+ "Capra ibex ibex": 392,
395
+ "Capsaspora owczarzaki ATCC 30864": 393,
396
+ "Carboxydothermus hydrogenoformans Z-2901": 394,
397
+ "Cardiobacterium hominis ATCC 15826": 395,
398
+ "Castellaniella defragrans 65Phen": 396,
399
+ "Catenibacterium mitsuokai DSM 15897": 397,
400
+ "Catenulispora acidiphila DSM 44928": 398,
401
+ "Caulobacter segnis ATCC 21756": 399,
402
+ "Caulobacter vibrioides CB15": 400,
403
+ "Caulobacter vibrioides NA1000": 401,
404
+ "Cecembia lonarensis LW9": 402,
405
+ "Cellulomonas fimi ATCC 484": 403,
406
+ "Cellulomonas flavigena DSM 20109": 404,
407
+ "Cellulophaga algicola DSM 14237": 405,
408
+ "Cellvibrio japonicus Ueda107": 406,
409
+ "Cenarchaeum symbiosum A": 407,
410
+ "Ceratotherium simum cottoni": 408,
411
+ "Ceratotherium simum simum": 409,
412
+ "Cereibacter sphaeroides 2.4.1": 410,
413
+ "Cereibacter sphaeroides ATCC 17025": 411,
414
+ "Cereibacter sphaeroides ATCC 17029": 412,
415
+ "Cereibacter sphaeroides KD131": 413,
416
+ "Cervus canadensis nelsoni": 414,
417
+ "Cervus canadensis roosevelti": 415,
418
+ "Cervus elaphus hippelaphus": 416,
419
+ "Cervus nippon aplodontus": 417,
420
+ "Cervus nippon hortulorum": 418,
421
+ "Cervus nippon nippon": 419,
422
+ "Cervus nippon pseudaxis": 420,
423
+ "Cervus nippon taiouanus": 421,
424
+ "Cervus nippon yesoensis": 422,
425
+ "Chaetomium globosum CBS 148.51": 423,
426
+ "Chamaesiphon minutus PCC 6605": 424,
427
+ "Chilabothrus strigilatus fosteri": 425,
428
+ "Chilabothrus strigilatus mccraniei": 426,
429
+ "Chilabothrus strigilatus strigilatus": 427,
430
+ "Chironomus thummi thummi": 428,
431
+ "Chitinophaga pinensis DSM 2588": 429,
432
+ "Chlamydia abortus S26/3": 430,
433
+ "Chlamydia felis Fe/C-56": 431,
434
+ "Chlamydia muridarum str. Nigg": 432,
435
+ "Chlamydia psittaci 6BC": 433,
436
+ "Chlamydia trachomatis A/HAR-13": 434,
437
+ "Chlamydia trachomatis B/Jali20/OT": 435,
438
+ "Chlamydia trachomatis B/TZ1A828/OT": 436,
439
+ "Chlamydia trachomatis D/UW-3/CX": 437,
440
+ "Chlamydia trachomatis G/9301": 438,
441
+ "Chlamydia trachomatis L2/434/Bu": 439,
442
+ "Chlamydia trachomatis L2b/UCH-1/proctitis": 440,
443
+ "Chlamydia trachomatis Sweden2": 441,
444
+ "Chlamys nipponensis akazara": 442,
445
+ "Chlorobaculum parvum NCIB 8327": 443,
446
+ "Chlorobaculum tepidum TLS": 444,
447
+ "Chlorobium chlorochromatii CaD3": 445,
448
+ "Chlorobium limicola DSM 245": 446,
449
+ "Chlorobium phaeobacteroides BS1": 447,
450
+ "Chlorobium phaeobacteroides DSM 266": 448,
451
+ "Chlorobium phaeovibrioides DSM 265": 449,
452
+ "Chloroflexus aggregans DSM 9485": 450,
453
+ "Chloroflexus aurantiacus J-10-fl": 451,
454
+ "Chloroflexus aurantiacus Y-400-fl": 452,
455
+ "Chlorogloeopsis fritschii PCC 9212": 453,
456
+ "Chloroherpeton thalassium ATCC 35110": 454,
457
+ "Choristoneura occidentalis biennis": 455,
458
+ "Christiangramia forsetii KT0803": 456,
459
+ "Chromobacterium violaceum ATCC 12472": 457,
460
+ "Chromohalobacter israelensis DSM 3043": 458,
461
+ "Chrysemys picta bellii": 459,
462
+ "Chthonomonas calidirosea T49": 460,
463
+ "Cistus creticus subsp. creticus": 461,
464
+ "Citrifermentans bemidjiense Bem": 462,
465
+ "Citrobacter koseri ATCC BAA-895": 463,
466
+ "Citrobacter rodentium ICC168": 464,
467
+ "Cladophialophora bantiana CBS 173.52": 465,
468
+ "Clavibacter michiganensis subsp. michiganensis": 466,
469
+ "Clavibacter michiganensis subsp. michiganensis NCPPB 382": 467,
470
+ "Claviceps purpurea 20.1": 468,
471
+ "Clavispora lusitaniae ATCC 42720": 469,
472
+ "Clostridioides difficile 630": 470,
473
+ "Clostridioides difficile CD196": 471,
474
+ "Clostridioides difficile CD3": 472,
475
+ "Clostridioides difficile R20291": 473,
476
+ "Clostridioides mangenotii LM2": 474,
477
+ "Clostridium acetobutylicum ATCC 824": 475,
478
+ "Clostridium beijerinckii NCIMB 8052": 476,
479
+ "Clostridium botulinum A str. ATCC 19397": 477,
480
+ "Clostridium botulinum A str. Hall": 478,
481
+ "Clostridium botulinum A2 str. Kyoto": 479,
482
+ "Clostridium botulinum A3 str. Loch Maree": 480,
483
+ "Clostridium botulinum B str. Eklund 17B (NRP)": 481,
484
+ "Clostridium botulinum B1": 482,
485
+ "Clostridium botulinum Ba4 str. 657": 483,
486
+ "Clostridium botulinum E3 str. Alaska E43": 484,
487
+ "Clostridium botulinum F str. Langeland": 485,
488
+ "Clostridium cellulovorans 743B": 486,
489
+ "Clostridium kluyveri DSM 555": 487,
490
+ "Clostridium kluyveri NBRC 12016": 488,
491
+ "Clostridium ljungdahlii DSM 13528": 489,
492
+ "Clostridium novyi NT": 490,
493
+ "Clostridium perfringens ATCC 13124": 491,
494
+ "Clostridium perfringens SM101": 492,
495
+ "Clostridium perfringens str. 13": 493,
496
+ "Clostridium sporogenes ATCC 15579": 494,
497
+ "Clostridium sporogenes PA 3679": 495,
498
+ "Clostridium tetani E88": 496,
499
+ "Coccidioides immitis RS": 497,
500
+ "Coccidioides posadasii C735 delta SOWgp": 498,
501
+ "Coccidioides posadasii str. Silveira": 499,
502
+ "Colletotrichum gloeosporioides Cg-14": 500,
503
+ "Colletotrichum graminicola M1.001": 501,
504
+ "Colletotrichum higginsianum IMI 349063": 502,
505
+ "Colletotrichum orbiculare MAFF 240422": 503,
506
+ "Collinsella aerofaciens ATCC 25986": 504,
507
+ "Colwellia psychrerythraea 34H": 505,
508
+ "Comamonas testosteroni KF-1": 506,
509
+ "Conexibacter woesei DSM 14684": 507,
510
+ "Conus anabathrum floridanus": 508,
511
+ "Conus buxeus loroisii": 509,
512
+ "Coprinopsis cinerea okayama7#130": 510,
513
+ "Coprothermobacter proteolyticus DSM 5265": 511,
514
+ "Coraliomargarita akajimensis DSM 45221": 512,
515
+ "Corallus hortulanus enydris": 513,
516
+ "Cordyceps fumosorosea ARSEF 2679": 514,
517
+ "Cordyceps militaris CM01": 515,
518
+ "Corynebacterium aurimucosum ATCC 700975": 516,
519
+ "Corynebacterium diphtheriae NCTC 13129": 517,
520
+ "Corynebacterium diphtheriae PW8": 518,
521
+ "Corynebacterium efficiens YS-314": 519,
522
+ "Corynebacterium glutamicum ATCC 13032": 520,
523
+ "Corynebacterium glutamicum K051": 521,
524
+ "Corynebacterium glutamicum R": 522,
525
+ "Corynebacterium jeikeium K411": 523,
526
+ "Corynebacterium kroppenstedtii DSM 44385": 524,
527
+ "Corynebacterium lipophiloflavum DSM 44291": 525,
528
+ "Corynebacterium pseudotuberculosis 1002": 526,
529
+ "Corynebacterium pseudotuberculosis C231": 527,
530
+ "Corynebacterium pseudotuberculosis FRC41": 528,
531
+ "Corynebacterium resistens DSM 45100": 529,
532
+ "Corynebacterium urealyticum DSM 7109": 530,
533
+ "Coxiella burnetii CbuG_Q212": 531,
534
+ "Coxiella burnetii CbuK_Q154": 532,
535
+ "Coxiella burnetii Dugway 5J108-111": 533,
536
+ "Coxiella burnetii RSA 331": 534,
537
+ "Coxiella burnetii RSA 493": 535,
538
+ "Crambe hispanica subsp. abyssinica": 536,
539
+ "Crassula rupestris subsp. marnieriana": 537,
540
+ "Cratogeomys goldmani goldmani": 538,
541
+ "Cratogeomys goldmani subsp. rubellus": 539,
542
+ "Crocidura gueldenstaedtii": 540,
543
+ "Crocidura rapax kurodai": 541,
544
+ "Crocosphaera subtropica ATCC 51142": 542,
545
+ "Cronobacter sakazakii ATCC BAA-894": 543,
546
+ "Cronobacter turicensis z3032": 544,
547
+ "Crotalus cerastes cerastes": 545,
548
+ "Crotalus durissus cumanensis": 546,
549
+ "Crotalus durissus durissus": 547,
550
+ "Crotalus durissus ruruima": 548,
551
+ "Crotalus durissus terrificus": 549,
552
+ "Crotalus lepidus lepidus": 550,
553
+ "Crotalus lutosus abyssus": 551,
554
+ "Crotalus mitchellii mitchellii": 552,
555
+ "Crotalus molossus molossus": 553,
556
+ "Crotalus molossus nigrescens": 554,
557
+ "Crotalus ruber ruber": 555,
558
+ "Crotalus scutulatus scutulatus": 556,
559
+ "Crotalus viridis viridis": 557,
560
+ "Cryphonectria parasitica EP155": 558,
561
+ "Cryptococcus deneoformans B-3501A": 559,
562
+ "Cryptococcus deneoformans JEC21": 560,
563
+ "Cryptococcus deuterogattii R265": 561,
564
+ "Cryptococcus gattii WM276": 562,
565
+ "Cryptococcus neoformans H99": 563,
566
+ "Cryptosporidium muris RN66": 564,
567
+ "Cryptosporidium parvum Iowa II": 565,
568
+ "Cucumis melo subsp. agrestis": 566,
569
+ "Cucumis melo subsp. melo": 567,
570
+ "Culex pipiens pipiens": 568,
571
+ "Cupriavidus metallidurans CH34": 569,
572
+ "Cupriavidus necator H16": 570,
573
+ "Cupriavidus necator N-1": 571,
574
+ "Cupriavidus pinatubonensis JMP134": 572,
575
+ "Cupriavidus taiwanensis LMG 19424": 573,
576
+ "Cutibacterium acnes KPA171202": 574,
577
+ "Cutibacterium acnes SK137": 575,
578
+ "Cyanidioschyzon merolae strain 10D": 576,
579
+ "Cyberlindnera jadinii NRRL Y-1542": 577,
580
+ "Cyclobacterium marinum DSM 745": 578,
581
+ "Cylindrotheca sp. (STRAIN N1)": 579,
582
+ "Cynara cardunculus subsp. cardunculus": 580,
583
+ "Cyphellophora europaea CBS 101466": 581,
584
+ "Cytophaga hutchinsonii ATCC 33406": 582,
585
+ "Dactylococcopsis salina PCC 8305": 583,
586
+ "Damaliscus lunatus korrigum": 584,
587
+ "Damaliscus pygargus phillipsi": 585,
588
+ "Daucus carota subsp. sativus": 586,
589
+ "Debaryomyces hansenii CBS767": 587,
590
+ "Dechloromonas aromatica RCB": 588,
591
+ "Deferribacter desulfuricans SSM1": 589,
592
+ "Dehalobacter restrictus DSM 9455": 590,
593
+ "Dehalococcoides mccartyi 195": 591,
594
+ "Dehalococcoides mccartyi BAV1": 592,
595
+ "Dehalococcoides mccartyi CBDB1": 593,
596
+ "Dehalococcoides mccartyi VS": 594,
597
+ "Dehalogenimonas lykanthroporepellens BL-DC-9": 595,
598
+ "Deinococcus deserti VCD115": 596,
599
+ "Deinococcus geothermalis DSM 11300": 597,
600
+ "Deinococcus proteolyticus MRP": 598,
601
+ "Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539": 599,
602
+ "Delftia acidovorans SPH-1": 600,
603
+ "Dendraspis polylepis polylepis": 601,
604
+ "Dendroaspis jamesoni jamesoni": 602,
605
+ "Dendroaspis jamesoni kaimosae": 603,
606
+ "Dendrothele bispora CBS 962.96": 604,
607
+ "Denitrovibrio acetiphilus DSM 12809": 605,
608
+ "Desmonostoc sp. PCC 7906": 606,
609
+ "Desulfarculus baarsii DSM 2075": 607,
610
+ "Desulfitobacterium hafniense DCB-2": 608,
611
+ "Desulfitobacterium hafniense Y51": 609,
612
+ "Desulfomicrobium baculatum DSM 4028": 610,
613
+ "Desulforamulus reducens MI-1": 611,
614
+ "Desulforapulum autotrophicum HRM2": 612,
615
+ "Desulfosudis oleivorans Hxd3": 613,
616
+ "Desulfotalea psychrophila LSv54": 614,
617
+ "Desulfovibrio desulfuricans ATCC 27774": 615,
618
+ "Desulfurispirillum indicum S5": 616,
619
+ "Desulfurococcus amylolyticus 1221n": 617,
620
+ "Desulfurococcus mucosus DSM 2162": 618,
621
+ "Desulfuromonas acetoxidans DSM 684": 619,
622
+ "Dicerorhinus sumatrensis harrissoni": 620,
623
+ "Dicerorhinus sumatrensis sumatrensis": 621,
624
+ "Diceros bicornis minor": 622,
625
+ "Dichelobacter nodosus VCS1703A": 623,
626
+ "Dickeya chrysanthemi Ech1591": 624,
627
+ "Dickeya dadantii 3937": 625,
628
+ "Dickeya parazeae Ech586": 626,
629
+ "Dictyoglomus thermophilum H-6-12": 627,
630
+ "Dictyoglomus turgidum DSM 6724": 628,
631
+ "Dinoroseobacter shibae DFL 12 = DSM 16493": 629,
632
+ "Dipodomys merriami margaritae": 630,
633
+ "Dothistroma septosporum NZE10": 631,
634
+ "Drepanopeziza brunnea f. sp. 'multigermtubi' MB_m1": 632,
635
+ "Drosophila pseudoobscura bogotana": 633,
636
+ "Drosophila pseudoobscura pseudoobscura": 634,
637
+ "Drymarchon melanurus erebennus": 635,
638
+ "Dyadobacter fermentans DSM 18053": 636,
639
+ "Echis carinatus sochureki": 637,
640
+ "Echis pyramidum leakeyi": 638,
641
+ "Ectopseudomonas mendocina ymp": 639,
642
+ "Ectopseudomonas oleovorans CECT 5344": 640,
643
+ "Edwardsiella ictaluri 93-146": 641,
644
+ "Edwardsiella tarda FL6-60": 642,
645
+ "Eggerthella lenta DSM 2243": 643,
646
+ "Ehrlichia canis str. Jake": 644,
647
+ "Ehrlichia chaffeensis str. Arkansas": 645,
648
+ "Ehrlichia ruminantium str. Gardel": 646,
649
+ "Ehrlichia ruminantium str. Welgevonden": 647,
650
+ "Ehrlichia sennetsu str. Miyayama": 648,
651
+ "Elusimicrobium minutum Pei191": 649,
652
+ "Emiliania huxleyi CCMP1516": 650,
653
+ "Encephalitozoon cuniculi GB-M1": 651,
654
+ "Encephalitozoon hellem ATCC 50504": 652,
655
+ "Encephalitozoon intestinalis ATCC 50506": 653,
656
+ "Entamoeba dispar SAW760": 654,
657
+ "Entamoeba histolytica HM-1:IMSS": 655,
658
+ "Enterobacter cloacae JD6301": 656,
659
+ "Enterobacter cloacae subsp. cloacae ATCC 13047": 657,
660
+ "Enterobacter hormaechei subsp. hoffmannii UCI 50": 658,
661
+ "Enterocloster bolteae ATCC BAA-613": 659,
662
+ "Enterococcus casseliflavus EC10": 660,
663
+ "Enterococcus faecalis 62": 661,
664
+ "Enterococcus faecalis EnGen0062": 662,
665
+ "Enterococcus faecalis EnGen0310 = MMH594": 663,
666
+ "Enterococcus faecalis OG1RF": 664,
667
+ "Enterococcus faecalis TX4000": 665,
668
+ "Enterococcus faecalis V583": 666,
669
+ "Enterococcus faecium Aus0004": 667,
670
+ "Enterococcus faecium DO": 668,
671
+ "Enterococcus gallinarum EG2": 669,
672
+ "Enterococcus hirae ATCC 9790": 670,
673
+ "Enterococcus italicus DSM 15952": 671,
674
+ "Enterocytozoon bieneusi H348": 672,
675
+ "Eospalax fontanierii baileyi": 673,
676
+ "Eospalax fontanierii cansus": 674,
677
+ "Epichloe festucae E2368": 675,
678
+ "Epichloe festucae Fl1": 676,
679
+ "Equus hemionus kulan": 677,
680
+ "Equus quagga burchellii": 678,
681
+ "Eremothecium cymbalariae DBVPG#7215": 679,
682
+ "Eremothecium gossypii ATCC 10895": 680,
683
+ "Erwinia amylovora ATCC 49946": 681,
684
+ "Erwinia amylovora CFBP1430": 682,
685
+ "Erwinia billingiae Eb661": 683,
686
+ "Erwinia pyrifoliae DSM 12163": 684,
687
+ "Erwinia pyrifoliae Ep1/96": 685,
688
+ "Erwinia tasmaniensis Et1/99": 686,
689
+ "Erysipelothrix rhusiopathiae str. Fujisawa": 687,
690
+ "Erythrobacter litoralis HTCC2594": 688,
691
+ "Eryx colubrinus colubrinus": 689,
692
+ "Eryx colubrinus loveridgei": 690,
693
+ "Eryx miliaris nogaiorum": 691,
694
+ "Escherichia albertii TW07627": 692,
695
+ "Escherichia coli 042": 693,
696
+ "Escherichia coli 536": 694,
697
+ "Escherichia coli 55989": 695,
698
+ "Escherichia coli APEC O1": 696,
699
+ "Escherichia coli ATCC 25922": 697,
700
+ "Escherichia coli ATCC 8739": 698,
701
+ "Escherichia coli B str. REL606": 699,
702
+ "Escherichia coli BL21(DE3)": 700,
703
+ "Escherichia coli CFT073": 701,
704
+ "Escherichia coli DH1": 702,
705
+ "Escherichia coli ED1a": 703,
706
+ "Escherichia coli ETEC H10407": 704,
707
+ "Escherichia coli HS": 705,
708
+ "Escherichia coli IAI1": 706,
709
+ "Escherichia coli IAI39": 707,
710
+ "Escherichia coli IHE3034": 708,
711
+ "Escherichia coli K-12": 709,
712
+ "Escherichia coli KO11FL": 710,
713
+ "Escherichia coli KTE188": 711,
714
+ "Escherichia coli MS 115-1": 712,
715
+ "Escherichia coli MS 21-1": 713,
716
+ "Escherichia coli NC101": 714,
717
+ "Escherichia coli O104:H4 str. 2009EL-2071": 715,
718
+ "Escherichia coli O111:H- str. 11128": 716,
719
+ "Escherichia coli O127:H6 str. E2348/69": 717,
720
+ "Escherichia coli O139:H28 str. E24377A": 718,
721
+ "Escherichia coli O145:H28 str. RM12581": 719,
722
+ "Escherichia coli O157:H7 str. EC4115": 720,
723
+ "Escherichia coli O157:H7 str. EC869": 721,
724
+ "Escherichia coli O157:H7 str. TW14359": 722,
725
+ "Escherichia coli O26:H11 str. 11368": 723,
726
+ "Escherichia coli O55:H7 str. CB9615": 724,
727
+ "Escherichia coli O55:H7 str. RM12579": 725,
728
+ "Escherichia coli O83:H1 str. NRG 857C": 726,
729
+ "Escherichia coli RS218": 727,
730
+ "Escherichia coli S88": 728,
731
+ "Escherichia coli SE11": 729,
732
+ "Escherichia coli SE15": 730,
733
+ "Escherichia coli SMS-3-5": 731,
734
+ "Escherichia coli STEC_O31": 732,
735
+ "Escherichia coli TW11681": 733,
736
+ "Escherichia coli UMEA 3162-1": 734,
737
+ "Escherichia coli UMEA 4076-1": 735,
738
+ "Escherichia coli UMN026": 736,
739
+ "Escherichia coli UTI89": 737,
740
+ "Escherichia coli W": 738,
741
+ "Escherichia fergusonii ATCC 35469": 739,
742
+ "Eucalyptus globulus subsp. globulus": 740,
743
+ "Eulemur fulvus collaris": 741,
744
+ "Eulemur fulvus fulvus": 742,
745
+ "Eulemur macaco macaco": 743,
746
+ "Evansella cellulosilytica DSM 2522": 744,
747
+ "Ewingella americana ATCC 33852": 745,
748
+ "Exiguobacterium artemiae 255-15": 746,
749
+ "Exophiala dermatitidis NIH/UT8656": 747,
750
+ "Exserohilum turcica Et28A": 748,
751
+ "Fagopyrum esculentum subsp. ancestrale": 749,
752
+ "Felis silvestris lybica": 750,
753
+ "Ferrimonas balearica DSM 9799": 751,
754
+ "Ferroglobus placidus DSM 10642": 752,
755
+ "Fervidobacterium nodosum Rt17-B1": 753,
756
+ "Fervidobacterium pennivorans DSM 9078": 754,
757
+ "Fibrobacter succinogenes subsp. succinogenes S85": 755,
758
+ "Filifactor alocis ATCC 35896": 756,
759
+ "Finegoldia magna ATCC 29328": 757,
760
+ "Fischerella ambigua UTEX 1903": 758,
761
+ "Flavobacterium frigoris PS1": 759,
762
+ "Flavobacterium johnsoniae UW101": 760,
763
+ "Flavobacterium psychrophilum JIP02/86": 761,
764
+ "Formosa agariphila KMM 3901": 762,
765
+ "Francisella cf. novicida Fx1": 763,
766
+ "Francisella philomiragia subsp. philomiragia ATCC 25017": 764,
767
+ "Francisella tularensis subsp. holarctica FTNF002-00": 765,
768
+ "Francisella tularensis subsp. holarctica LVS": 766,
769
+ "Francisella tularensis subsp. holarctica OSU18": 767,
770
+ "Francisella tularensis subsp. mediasiatica FSC147": 768,
771
+ "Francisella tularensis subsp. novicida": 769,
772
+ "Francisella tularensis subsp. novicida U112": 770,
773
+ "Francisella tularensis subsp. tularensis FSC198": 771,
774
+ "Francisella tularensis subsp. tularensis SCHU S4": 772,
775
+ "Francisella tularensis subsp. tularensis WY96-3418": 773,
776
+ "Frankia alni ACN14a": 774,
777
+ "Frateuria aurantia DSM 6220": 775,
778
+ "Fructilactobacillus sanfranciscensis DSM 20451": 776,
779
+ "Fusarium fujikuroi IMI 58289": 777,
780
+ "Fusarium graminearum PH-1": 778,
781
+ "Fusarium odoratissimum NRRL 54006": 779,
782
+ "Fusarium oxysporum f. sp. conglutinans Fo5176": 780,
783
+ "Fusarium oxysporum f. sp. lycopersici 4287": 781,
784
+ "Fusarium proliferatum ET1": 782,
785
+ "Fusarium pseudograminearum CS3096": 783,
786
+ "Fusarium vanettenii 77-13-4": 784,
787
+ "Fusarium verticillioides 7600": 785,
788
+ "Fusobacterium nucleatum subsp. nucleatum ATCC 23726": 786,
789
+ "Fusobacterium nucleatum subsp. nucleatum ATCC 25586": 787,
790
+ "Gadus morhua callarias": 788,
791
+ "Galerina marginata CBS 339.88": 789,
792
+ "Gallibacterium anatis UMN179": 790,
793
+ "Gallionella capsiferriformans ES-2": 791,
794
+ "Gelatoporia subvermispora B": 792,
795
+ "Geminocystis herdmanii PCC 6308": 793,
796
+ "Gemmatimonas aurantiaca T-27": 794,
797
+ "Geobacillus kaustophilus HTA426": 795,
798
+ "Geobacillus stearothermophilus 10": 796,
799
+ "Geobacillus thermodenitrificans NG80-2": 797,
800
+ "Geobacter metallireducens GS-15": 798,
801
+ "Geobacter sulfurreducens KN400": 799,
802
+ "Geobacter sulfurreducens PCA": 800,
803
+ "Geodermatophilus obscurus DSM 43160": 801,
804
+ "Geomys bursarius lutescens": 802,
805
+ "Geotalea daltonii FRC-32": 803,
806
+ "Geotalea uraniireducens Rf4": 804,
807
+ "Giardia duodenalis ATCC 50581": 805,
808
+ "Giardia lamblia ATCC 50803": 806,
809
+ "Giardia lamblia P15": 807,
810
+ "Gillisia limnaea DSM 15749": 808,
811
+ "Gimesia maris DSM 8797": 809,
812
+ "Glaciozyma antarctica PI12": 810,
813
+ "Glaesserella parasuis SH0165": 811,
814
+ "Glarea lozoyensis ATCC 20868": 812,
815
+ "Gloeobacter kilaueensis JS1": 813,
816
+ "Gloeobacter violaceus PCC 7421": 814,
817
+ "Gloeophyllum trabeum ATCC 11539": 815,
818
+ "Gloeothece citriformis PCC 7424": 816,
819
+ "Gloeothece membranacea PCC 6501": 817,
820
+ "Glossina fuscipes fuscipes": 818,
821
+ "Glossina morsitans morsitans": 819,
822
+ "Glossina palpalis palpalis": 820,
823
+ "Gloydius blomhoffii blomhoffii": 821,
824
+ "Gloydius brevicaudus siniticus": 822,
825
+ "Gluconacetobacter diazotrophicus PA1 5": 823,
826
+ "Gluconobacter oxydans 621H": 824,
827
+ "Gonapodya prolifera JEL478": 825,
828
+ "Gordonia bronchialis DSM 43247": 826,
829
+ "Gordonia otitidis NBRC 100426": 827,
830
+ "Gorilla gorilla gorilla": 828,
831
+ "Gottschalkia acidurici 9a": 829,
832
+ "Granulibacter bethesdensis CGDNIH1": 830,
833
+ "Granulicella tundricola MP5ACTX9": 831,
834
+ "Grosmannia clavigera kw1407": 832,
835
+ "Haematobia irritans exigua": 833,
836
+ "Haemophilus influenzae 10810": 834,
837
+ "Haemophilus influenzae 3655": 835,
838
+ "Haemophilus influenzae 86-028NP": 836,
839
+ "Haemophilus influenzae PittEE": 837,
840
+ "Haemophilus influenzae PittGG": 838,
841
+ "Haemophilus influenzae R2866": 839,
842
+ "Haemophilus influenzae Rd KW20": 840,
843
+ "Haemophilus parainfluenzae T3T1": 841,
844
+ "Hahella chejuensis KCTC 2396": 842,
845
+ "Halalkalibacter akibai JCM 9157": 843,
846
+ "Halalkalibacterium halodurans C-125": 844,
847
+ "Halalkalicoccus jeotgali B3": 845,
848
+ "Haliangium ochraceum DSM 14365": 846,
849
+ "Haliotis discus hannai": 847,
850
+ "Haliscomenobacter hydrossis DSM 1100": 848,
851
+ "Haloarcula hispanica ATCC 33960": 849,
852
+ "Haloarcula japonica DSM 6131": 850,
853
+ "Haloarcula marismortui ATCC 43049": 851,
854
+ "Halobacillus halophilus DSM 2266": 852,
855
+ "Halobacteriovorax marinus SJ": 853,
856
+ "Halobacterium salinarum (strain Mex)": 854,
857
+ "Halobacterium salinarum (strain Port)": 855,
858
+ "Halobacterium salinarum (strain Shark)": 856,
859
+ "Halobacterium salinarum NRC-34001": 857,
860
+ "Haloferax gibbonsii ATCC 33959": 858,
861
+ "Haloferax mediterranei ATCC 33500": 859,
862
+ "Haloferax prahovense DSM 18310": 860,
863
+ "Haloferax volcanii DS2": 861,
864
+ "Haloferax volcanii DSM 14919": 862,
865
+ "Halogeometricum borinquense DSM 11551": 863,
866
+ "Halomicrobium mukohataei DSM 12286": 864,
867
+ "Halomonas elongata DSM 2581": 865,
868
+ "Halomonas halodenitrificans ATCC 12084": 866,
869
+ "Halopiger xanaduensis SH-6": 867,
870
+ "Haloplanus natans DSM 17983": 868,
871
+ "Haloquadratum walsbyi C23": 869,
872
+ "Haloquadratum walsbyi DSM 16790": 870,
873
+ "Halorhabdus utahensis DSM 12940": 871,
874
+ "Halorhodospira halophila SL1": 872,
875
+ "Halorubrum lacusprofundi ATCC 49239": 873,
876
+ "Haloterrigena turkmenica DSM 5511": 874,
877
+ "Halothermothrix orenii H 168": 875,
878
+ "Halothiobacillus neapolitanus c2": 876,
879
+ "Hapsidospora chrysogenum ATCC 11550": 877,
880
+ "Helicobacter acinonychis str. Sheeba": 878,
881
+ "Helicobacter felis ATCC 49179": 879,
882
+ "Helicobacter hepaticus ATCC 51449": 880,
883
+ "Helicobacter mustelae 12198": 881,
884
+ "Helicobacter pylori 26695": 882,
885
+ "Helicobacter pylori 52": 883,
886
+ "Helicobacter pylori B128": 884,
887
+ "Helicobacter pylori B38": 885,
888
+ "Helicobacter pylori G27": 886,
889
+ "Helicobacter pylori HPAG1": 887,
890
+ "Helicobacter pylori J99": 888,
891
+ "Helicobacter pylori P12": 889,
892
+ "Helicobacter pylori Shi470": 890,
893
+ "Helicobacter pylori UM084": 891,
894
+ "Heliomicrobium modesticaldum Ice1": 892,
895
+ "Heloderma horridum horridum": 893,
896
+ "Heloderma suspectum cinctum": 894,
897
+ "Heloderma suspectum suspectum": 895,
898
+ "Herbaspirillum seropedicae SmR1": 896,
899
+ "Herpetosiphon aurantiacus DSM 785": 897,
900
+ "Heterobasidion irregulare TC 32-1": 898,
901
+ "Heterosigma akashiwo CCMP452": 899,
902
+ "Heterosigma akashiwo NIES-293": 900,
903
+ "Heterostelium album PN500": 901,
904
+ "Hipposideros armiger terasensis": 902,
905
+ "Hirschia baltica ATCC 49814": 903,
906
+ "Histophilus somni 129PT": 904,
907
+ "Histophilus somni 2336": 905,
908
+ "Histoplasma capsulatum G186AR": 906,
909
+ "Histoplasma capsulatum H143": 907,
910
+ "Histoplasma capsulatum var. duboisii H88": 908,
911
+ "Hoeflea phototrophica DFL-43": 909,
912
+ "Homo sapiens neanderthalensis": 910,
913
+ "Hordeum murinum subsp. leporinum": 911,
914
+ "Hordeum vulgare subsp. spontaneum": 912,
915
+ "Hordeum vulgare subsp. vulgare": 913,
916
+ "Hyalomma asiaticum asiaticum": 914,
917
+ "Hyaloperonospora arabidopsidis Emoy2": 915,
918
+ "Hyaloscypha variabilis F": 916,
919
+ "Hydrogenobacter thermophilus TK-6": 917,
920
+ "Hydrogenovibrio crunogenus XCL-2": 918,
921
+ "Hyperthermus butylicus DSM 5456": 919,
922
+ "Hypholoma sublateritium FD-334 SS-4": 920,
923
+ "Hyphomonas neptunium ATCC 15444": 921,
924
+ "Idiomarina loihiensis L2TR": 922,
925
+ "Ignavibacterium album JCM 16511": 923,
926
+ "Ignicoccus hospitalis KIN4/I": 924,
927
+ "Ignisphaera aggregans DSM 17230": 925,
928
+ "Ilumatobacter coccineus YM16-304": 926,
929
+ "Ilyobacter polytropus DSM 2926": 927,
930
+ "Indibacter alkaliphilus LW1": 928,
931
+ "Intrasporangium calvum DSM 43043": 929,
932
+ "Isosphaera pallida ATCC 43644": 930,
933
+ "Jasminum simplicifolium subsp. suavissimum": 931,
934
+ "Jonesia denitrificans DSM 20603": 932,
935
+ "Kangiella koreensis DSM 16069": 933,
936
+ "Ketogulonicigenium vulgare Y25": 934,
937
+ "Kineococcus radiotolerans SRS30216 = ATCC BAA-149": 935,
938
+ "Kitasatospora setae KM-6054": 936,
939
+ "Klebsiella aerogenes KCTC 2190": 937,
940
+ "Klebsiella michiganensis KCTC 1686": 938,
941
+ "Klebsiella pneumoniae subsp. ozaenae": 939,
942
+ "Klebsiella pneumoniae subsp. pneumoniae HS11286": 940,
943
+ "Klebsiella pneumoniae subsp. pneumoniae MGH 78578": 941,
944
+ "Klebsiella pneumoniae subsp. rhinoscleromatis": 942,
945
+ "Klebsiella variicola 342": 943,
946
+ "Klebsiella variicola At-22": 944,
947
+ "Kluyveromyces lactis NRRL Y-1140": 945,
948
+ "Kluyveromyces marxianus DMKU3-1042": 946,
949
+ "Kocuria rhizophila DC2201": 947,
950
+ "Komagataeibacter sucrofermentans DSM 15973": 948,
951
+ "Komagataella phaffii CBS 7435": 949,
952
+ "Komagataella phaffii GS115": 950,
953
+ "Kosmotoga olearia TBF 19.5.1": 951,
954
+ "Kribbella flavida DSM 17836": 952,
955
+ "Kyrpidia tusciae DSM 2912": 953,
956
+ "Kytococcus sedentarius DSM 20547": 954,
957
+ "Laccaria bicolor S238N-H82": 955,
958
+ "Lachancea kluyveri NRRL Y-12651": 956,
959
+ "Lachancea thermotolerans CBS 6340": 957,
960
+ "Lachesis muta muta": 958,
961
+ "Lachesis muta rhombeata": 959,
962
+ "Lachnoclostridium phytofermentans ISDg": 960,
963
+ "Lachnospira eligens ATCC 27750": 961,
964
+ "Lacticaseibacillus casei BD-II": 962,
965
+ "Lacticaseibacillus casei BL23": 963,
966
+ "Lacticaseibacillus casei str. Zhang": 964,
967
+ "Lacticaseibacillus paracasei ATCC 334": 965,
968
+ "Lacticaseibacillus rhamnosus GG": 966,
969
+ "Lacticaseibacillus rhamnosus LMS2-1": 967,
970
+ "Lacticaseibacillus rhamnosus Lc 705": 968,
971
+ "Lactiplantibacillus plantarum JDM1": 969,
972
+ "Lactiplantibacillus plantarum WCFS1": 970,
973
+ "Lactobacillus acidophilus NCFM": 971,
974
+ "Lactobacillus crispatus ST1": 972,
975
+ "Lactobacillus delbrueckii subsp. bulgaricus": 973,
976
+ "Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002": 974,
977
+ "Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365": 975,
978
+ "Lactobacillus delbrueckii subsp. lactis": 976,
979
+ "Lactobacillus gasseri ATCC 33323 = JCM 1131": 977,
980
+ "Lactobacillus helveticus DPC 4571": 978,
981
+ "Lactobacillus johnsonii NCC 533": 979,
982
+ "Lactobacillus kefiranofaciens subsp. kefiranofaciens": 980,
983
+ "Lactococcus cremoris subsp. cremoris MG1363": 981,
984
+ "Lactococcus cremoris subsp. cremoris NZ9000": 982,
985
+ "Lactococcus cremoris subsp. cremoris SK11": 983,
986
+ "Lactococcus garvieae Lg2": 984,
987
+ "Lactococcus lactis subsp. hordniae": 985,
988
+ "Lactococcus lactis subsp. lactis": 986,
989
+ "Lactococcus lactis subsp. lactis Il1403": 987,
990
+ "Lactococcus lactis subsp. lactis KF147": 988,
991
+ "Lancefieldella parvula DSM 20469": 989,
992
+ "Lancefieldella rimae ATCC 49626": 990,
993
+ "Laribacter hongkongensis HLHK9": 991,
994
+ "Latilactobacillus sakei L45": 992,
995
+ "Latilactobacillus sakei subsp. sakei 23K": 993,
996
+ "Lavandula pedunculata subsp. lusitanica": 994,
997
+ "Lawsonia intracellularis PHE/MN1-00": 995,
998
+ "Leadbetterella byssophila DSM 17132": 996,
999
+ "Legionella longbeachae NSW150": 997,
1000
+ "Legionella pneumophila 2300/99 Alcoy": 998,
1001
+ "Legionella pneumophila str. Corby": 999,
1002
+ "Legionella pneumophila str. Lens": 1000,
1003
+ "Legionella pneumophila str. Paris": 1001,
1004
+ "Legionella pneumophila subsp. pneumophila str. Philadelphia 1": 1002,
1005
+ "Leifsonia xyli subsp. xyli str. CTCB07": 1003,
1006
+ "Leishmania mexicana MHOM/GT/2001/U1103": 1004,
1007
+ "Leiurus quinquestriatus quinquestriatus": 1005,
1008
+ "Lens culinaris subsp. culinaris": 1006,
1009
+ "Lens culinaris subsp. tomentosus": 1007,
1010
+ "Lentilactobacillus buchneri NRRL B-30929": 1008,
1011
+ "Lentilactobacillus hilgardii DSM 20176 = ATCC 8290": 1009,
1012
+ "Leptospira biflexa serovar Patoc strain 'Patoc 1 (Ames)'": 1010,
1013
+ "Leptospira biflexa serovar Patoc strain 'Patoc 1 (Paris)'": 1011,
1014
+ "Leptospira borgpetersenii serovar Hardjo-bovis str. JB197": 1012,
1015
+ "Leptospira borgpetersenii serovar Hardjo-bovis str. L550": 1013,
1016
+ "Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130": 1014,
1017
+ "Leptospira interrogans serovar Lai str. 56601": 1015,
1018
+ "Leptospirillum ferriphilum ML-04": 1016,
1019
+ "Leptothrix cholodnii SP-6": 1017,
1020
+ "Leptotrichia buccalis C-1013-b": 1018,
1021
+ "Leptotrichia shahii DSM 19757": 1019,
1022
+ "Leptotrichia wadei F0279": 1020,
1023
+ "Leuconostoc citreum KM20": 1021,
1024
+ "Leuconostoc gasicomitatum LMG 18811": 1022,
1025
+ "Leuconostoc kimchii IMSNU 11154": 1023,
1026
+ "Leuconostoc mesenteroides subsp. cremoris": 1024,
1027
+ "Leuconostoc mesenteroides subsp. mesenteroides": 1025,
1028
+ "Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293": 1026,
1029
+ "Levilactobacillus brevis ATCC 367": 1027,
1030
+ "Liasis mackloti savuensis": 1028,
1031
+ "Ligilactobacillus salivarius CECT 5713": 1029,
1032
+ "Ligilactobacillus salivarius UCC118": 1030,
1033
+ "Limnospira platensis NIES-39": 1031,
1034
+ "Limosilactobacillus fermentum CECT 5716": 1032,
1035
+ "Limosilactobacillus fermentum IFO 3956": 1033,
1036
+ "Limosilactobacillus reuteri SD2112": 1034,
1037
+ "Limosilactobacillus reuteri subsp. reuteri": 1035,
1038
+ "Limosilactobacillus reuteri subsp. reuteri JCM 1112": 1036,
1039
+ "Limosilactobacillus reuteri subsp. rodentium": 1037,
1040
+ "Limosilactobacillus reuteri subsp. suis": 1038,
1041
+ "Listeria innocua Clip11262": 1039,
1042
+ "Listeria monocytogenes 08-5578": 1040,
1043
+ "Listeria monocytogenes 08-5923": 1041,
1044
+ "Listeria monocytogenes 10403S": 1042,
1045
+ "Listeria monocytogenes EGD": 1043,
1046
+ "Listeria monocytogenes EGD-e": 1044,
1047
+ "Listeria monocytogenes HCC23": 1045,
1048
+ "Listeria monocytogenes serotype 4b str. CLIP 80459": 1046,
1049
+ "Listeria monocytogenes serotype 4b str. F2365": 1047,
1050
+ "Listeria seeligeri serovar 1/2b str. SLCC3954": 1048,
1051
+ "Listeria welshimeri serovar 6b str. SLCC5334": 1049,
1052
+ "Litchfieldella anticariensis FP35 = DSM 16096": 1050,
1053
+ "Lodderomyces elongisporus NRRL YB-4239": 1051,
1054
+ "Lysinibacillus sphaericus C3-41": 1052,
1055
+ "Macaca fuscata fuscata": 1053,
1056
+ "Macrococcoides caseolyticum JCSC5402": 1054,
1057
+ "Macrophomina phaseolina MS6": 1055,
1058
+ "Macrovipera lebetina obtusa": 1056,
1059
+ "Macrovipera lebetina transmediterranea": 1057,
1060
+ "Magnetococcus marinus MC-1": 1058,
1061
+ "Magnetospirillum gryphiswaldense MSR-1": 1059,
1062
+ "Magnolia fraseri subsp. pyramidata": 1060,
1063
+ "Malacoplasma penetrans HF-2": 1061,
1064
+ "Malassezia globosa CBS 7966": 1062,
1065
+ "Malassezia restricta CBS 7877": 1063,
1066
+ "Malassezia sympodialis ATCC 42132": 1064,
1067
+ "Maricaulis maris MCS10": 1065,
1068
+ "Maridesulfovibrio salexigens DSM 2638": 1066,
1069
+ "Marinitoga hydrogenitolerans DSM 16785": 1067,
1070
+ "Marinitoga piezophila KA3": 1068,
1071
+ "Marinobacter adhaerens HP15": 1069,
1072
+ "Marinobacter nauticus ATCC 49840": 1070,
1073
+ "Marinobacter nauticus VT8": 1071,
1074
+ "Marinomonas mediterranea MMB-1": 1072,
1075
+ "Marinomonas posidonica IVIA-Po-181": 1073,
1076
+ "Marivirga tractuosa DSM 4126": 1074,
1077
+ "Marmota marmota marmota": 1075,
1078
+ "Medicago sativa subsp. falcata": 1076,
1079
+ "Mediterraneibacter gnavus ATCC 29149": 1077,
1080
+ "Mediterraneibacter gnavus CC55_001C": 1078,
1081
+ "Megalodesulfovibrio gigas DSM 1382 = ATCC 19364": 1079,
1082
+ "Meiothermus ruber DSM 1279": 1080,
1083
+ "Melampsora larici-populina 98AG31": 1081,
1084
+ "Melioribacter roseus P3M-2": 1082,
1085
+ "Melissococcus plutonius ATCC 35311": 1083,
1086
+ "Merluccius australis australis": 1084,
1087
+ "Mesobacillus selenatarsenatis SF-1": 1085,
1088
+ "Mesomycoplasma conjunctivae HRC/581": 1086,
1089
+ "Mesomycoplasma hyopneumoniae 232": 1087,
1090
+ "Mesomycoplasma hyopneumoniae 7448": 1088,
1091
+ "Mesomycoplasma hyopneumoniae J": 1089,
1092
+ "Mesomycoplasma hyorhinis HUB-1": 1090,
1093
+ "Mesoplasma florum L1": 1091,
1094
+ "Mesorhizobium japonicum MAFF 303099": 1092,
1095
+ "Metallosphaera cuprina Ar-4": 1093,
1096
+ "Metallosphaera sedula DSM 5348": 1094,
1097
+ "Metamycoplasma arthritidis 158L3-1": 1095,
1098
+ "Metamycoplasma hominis ATCC 23114": 1096,
1099
+ "Metarhizium acridum CQMa 102": 1097,
1100
+ "Metarhizium album ARSEF 1941": 1098,
1101
+ "Metarhizium brunneum ARSEF 3297": 1099,
1102
+ "Metarhizium guizhouense ARSEF 977": 1100,
1103
+ "Metarhizium majus ARSEF 297": 1101,
1104
+ "Metarhizium robertsii ARSEF 23": 1102,
1105
+ "Methanobacterium formicicum DSM 3637": 1103,
1106
+ "Methanobrevibacter ruminantium M1": 1104,
1107
+ "Methanobrevibacter smithii ATCC 35061": 1105,
1108
+ "Methanocaldococcus fervens AG86": 1106,
1109
+ "Methanocaldococcus infernus ME": 1107,
1110
+ "Methanocaldococcus jannaschii DSM 2661": 1108,
1111
+ "Methanocaldococcus vulcanius M7": 1109,
1112
+ "Methanocella arvoryzae MRE50": 1110,
1113
+ "Methanocella paludicola SANAE": 1111,
1114
+ "Methanococcoides burtonii DSM 6242": 1112,
1115
+ "Methanococcus aeolicus Nankai-3": 1113,
1116
+ "Methanococcus maripaludis C5": 1114,
1117
+ "Methanococcus maripaludis C6": 1115,
1118
+ "Methanococcus maripaludis C7": 1116,
1119
+ "Methanococcus maripaludis S2": 1117,
1120
+ "Methanococcus vannielii SB": 1118,
1121
+ "Methanococcus voltae A3": 1119,
1122
+ "Methanocorpusculum labreanum Z": 1120,
1123
+ "Methanoculleus marisnigri JR1": 1121,
1124
+ "Methanohalobium evestigatum Z-7303": 1122,
1125
+ "Methanohalophilus mahii DSM 5219": 1123,
1126
+ "Methanolacinia petrolearia DSM 11571": 1124,
1127
+ "Methanopyrus kandleri AV19": 1125,
1128
+ "Methanoregula boonei 6A8": 1126,
1129
+ "Methanosalsum zhilinae DSM 4017": 1127,
1130
+ "Methanosarcina acetivorans C2A": 1128,
1131
+ "Methanosarcina barkeri str. Fusaro": 1129,
1132
+ "Methanosarcina mazei Go1": 1130,
1133
+ "Methanosarcina thermophila TM-1": 1131,
1134
+ "Methanosphaera stadtmanae DSM 3091": 1132,
1135
+ "Methanosphaerula palustris E1-9c": 1133,
1136
+ "Methanospirillum hungatei JF-1": 1134,
1137
+ "Methanothermobacter marburgensis str. Marburg": 1135,
1138
+ "Methanothermobacter thermautotrophicus str. Delta H": 1136,
1139
+ "Methanothermobacter thermautotrophicus str. Winter": 1137,
1140
+ "Methanothermococcus okinawensis IH1": 1138,
1141
+ "Methanothermus fervidus DSM 2088": 1139,
1142
+ "Methanothrix harundinacea 6Ac": 1140,
1143
+ "Methanothrix soehngenii GP6": 1141,
1144
+ "Methanothrix thermoacetophila PT": 1142,
1145
+ "Methanotorris igneus Kol 5": 1143,
1146
+ "Methylacidiphilum fumariolicum SolV": 1144,
1147
+ "Methylacidiphilum infernorum V4": 1145,
1148
+ "Methylibium petroleiphilum PM1": 1146,
1149
+ "Methylobacillus flagellatus KT": 1147,
1150
+ "Methylobacter tundripaludum SV96": 1148,
1151
+ "Methylobacterium nodulans ORS 2060": 1149,
1152
+ "Methylobacterium radiotolerans JCM 2831": 1150,
1153
+ "Methylocella silvestris BL2": 1151,
1154
+ "Methylococcus capsulatus str. Bath": 1152,
1155
+ "Methylomonas methanica MC09": 1153,
1156
+ "Methylorubrum extorquens AM1": 1154,
1157
+ "Methylorubrum extorquens CM4": 1155,
1158
+ "Methylorubrum extorquens DM4": 1156,
1159
+ "Methylorubrum extorquens PA1": 1157,
1160
+ "Methylorubrum populi BJ001": 1158,
1161
+ "Methylotenera mobilis JLW8": 1159,
1162
+ "Methylotuvimicrobium alcaliphilum 20Z": 1160,
1163
+ "Methyloversatilis universalis FAM5": 1161,
1164
+ "Methylovorus glucosotrophus SIP3-4": 1162,
1165
+ "Meyerozyma guilliermondii ATCC 6260": 1163,
1166
+ "Microbacterium testaceum StLB037": 1164,
1167
+ "Micrococcus luteus NCTC 2665": 1165,
1168
+ "Microcystis aeruginosa NIES-843": 1166,
1169
+ "Microcystis aeruginosa NIES-88": 1167,
1170
+ "Microcystis aeruginosa PCC 7806": 1168,
1171
+ "Micromonas pusilla CCMP1545": 1169,
1172
+ "Micromonospora megalomicea subsp. nigra": 1170,
1173
+ "Microsporum canis CBS 113480": 1171,
1174
+ "Micrurus tener microgalbineus": 1172,
1175
+ "Micrurus tener tener": 1173,
1176
+ "Millerozyma farinosa CBS 7064": 1174,
1177
+ "Moesziomyces antarcticus T-34": 1175,
1178
+ "Moniliophthora perniciosa FA553": 1176,
1179
+ "Moorella thermoacetica ATCC 39073": 1177,
1180
+ "Moorena producens JHB": 1178,
1181
+ "Moraxella catarrhalis BBH18": 1179,
1182
+ "Mus musculus bactrianus": 1180,
1183
+ "Mus musculus castaneus": 1181,
1184
+ "Mus musculus molossinus": 1182,
1185
+ "Musa acuminata subsp. malaccensis": 1183,
1186
+ "Musicola paradisiaca Ech703": 1184,
1187
+ "Mustela putorius furo": 1185,
1188
+ "Mycetohabitans rhizoxinica HKI 454": 1186,
1189
+ "Mycobacterium avium 104": 1187,
1190
+ "Mycobacterium avium subsp. hominissuis TH135": 1188,
1191
+ "Mycobacterium avium subsp. paratuberculosis": 1189,
1192
+ "Mycobacterium avium subsp. paratuberculosis K-10": 1190,
1193
+ "Mycobacterium intracellulare ATCC 13950": 1191,
1194
+ "Mycobacterium intracellulare subsp. intracellulare MTCC 9506": 1192,
1195
+ "Mycobacterium leprae Br4923": 1193,
1196
+ "Mycobacterium leprae TN": 1194,
1197
+ "Mycobacterium marinum M": 1195,
1198
+ "Mycobacterium tuberculosis CDC1551": 1196,
1199
+ "Mycobacterium tuberculosis F11": 1197,
1200
+ "Mycobacterium tuberculosis H37Ra": 1198,
1201
+ "Mycobacterium tuberculosis H37Rv": 1199,
1202
+ "Mycobacterium tuberculosis KZN 1435": 1200,
1203
+ "Mycobacterium tuberculosis str. Erdman = ATCC 35801": 1201,
1204
+ "Mycobacterium tuberculosis variant bovis AF2122/97": 1202,
1205
+ "Mycobacterium tuberculosis variant bovis BCG str. Pasteur 1173P2": 1203,
1206
+ "Mycobacterium tuberculosis variant bovis BCG str. Tokyo 172": 1204,
1207
+ "Mycobacterium ulcerans Agy99": 1205,
1208
+ "Mycobacteroides abscessus ATCC 19977": 1206,
1209
+ "Mycolicibacterium gilvum PYR-GCK": 1207,
1210
+ "Mycolicibacterium gilvum Spyr1": 1208,
1211
+ "Mycolicibacterium hassiacum DSM 44199": 1209,
1212
+ "Mycolicibacterium smegmatis MC2 155": 1210,
1213
+ "Mycolicibacterium smegmatis MKD8": 1211,
1214
+ "Mycolicibacterium thermoresistibile ATCC 19527": 1212,
1215
+ "Mycolicibacterium vanbaalenii PYR-1": 1213,
1216
+ "Mycoplasma capricolum subsp. capricolum ATCC 27343": 1214,
1217
+ "Mycoplasma capricolum subsp. capripneumoniae": 1215,
1218
+ "Mycoplasma mobile 163K": 1216,
1219
+ "Mycoplasma mycoides subsp. mycoides SC": 1217,
1220
+ "Mycoplasmoides gallisepticum str. F": 1218,
1221
+ "Mycoplasmoides gallisepticum str. R": 1219,
1222
+ "Mycoplasmoides genitalium G37": 1220,
1223
+ "Mycoplasmoides pneumoniae FH": 1221,
1224
+ "Mycoplasmoides pneumoniae M129": 1222,
1225
+ "Mycoplasmopsis agalactiae PG2": 1223,
1226
+ "Mycoplasmopsis bovis PG45": 1224,
1227
+ "Mycoplasmopsis fermentans PG18": 1225,
1228
+ "Mycoplasmopsis pulmonis UAB CTIP": 1226,
1229
+ "Mycoplasmopsis synoviae 53": 1227,
1230
+ "Myxococcus fulvus HW-1": 1228,
1231
+ "Myxococcus xanthus DK 1622": 1229,
1232
+ "Naja annulata annulata": 1230,
1233
+ "Naja haje haje": 1231,
1234
+ "Nakamurella multipartita DSM 44233": 1232,
1235
+ "Nakaseomyces glabratus CBS 138": 1233,
1236
+ "Nannizzia gypsea CBS 118893": 1234,
1237
+ "Nanoarchaeum equitans Kin4-M": 1235,
1238
+ "Natranaerobius thermophilus JW/NM-WN-LF": 1236,
1239
+ "Natrialba asiatica DSM 12278": 1237,
1240
+ "Natrialba magadii ATCC 43099": 1238,
1241
+ "Natrinema altunense JCM 12890": 1239,
1242
+ "Natronomonas pharaonis DSM 2160": 1240,
1243
+ "Nautilia profundicola AmH": 1241,
1244
+ "Neisseria elongata subsp. glycolytica": 1242,
1245
+ "Neisseria gonorrhoeae FA 1090": 1243,
1246
+ "Neisseria gonorrhoeae NCCP11945": 1244,
1247
+ "Neisseria lactamica 020-06": 1245,
1248
+ "Neisseria meningitidis 053442": 1246,
1249
+ "Neisseria meningitidis 8013": 1247,
1250
+ "Neisseria meningitidis ATCC 13091": 1248,
1251
+ "Neisseria meningitidis FAM18": 1249,
1252
+ "Neisseria meningitidis H44/76": 1250,
1253
+ "Neisseria meningitidis MC58": 1251,
1254
+ "Neisseria meningitidis Z2491": 1252,
1255
+ "Neisseria mucosa ATCC 25996": 1253,
1256
+ "Neolewinella persica DSM 23188": 1254,
1257
+ "Neorickettsia risticii str. Illinois": 1255,
1258
+ "Neurospora crassa OR74A": 1256,
1259
+ "Niastella koreensis GR20-10": 1257,
1260
+ "Nitratidesulfovibrio oxamicus (strain Monticello)": 1258,
1261
+ "Nitratidesulfovibrio vulgaris DP4": 1259,
1262
+ "Nitratidesulfovibrio vulgaris str. 'Miyazaki F'": 1260,
1263
+ "Nitratidesulfovibrio vulgaris str. Hildenborough": 1261,
1264
+ "Nitrobacter hamburgensis X14": 1262,
1265
+ "Nitrobacter winogradskyi Nb-255": 1263,
1266
+ "Nitrosococcus halophilus Nc 4": 1264,
1267
+ "Nitrosococcus oceani ATCC 19707": 1265,
1268
+ "Nitrosomonas europaea ATCC 19718": 1266,
1269
+ "Nitrosomonas eutropha C91": 1267,
1270
+ "Nitrosopumilus maritimus SCM1": 1268,
1271
+ "Nitrosospira multiformis ATCC 25196": 1269,
1272
+ "Nitrospina gracilis 3/211": 1270,
1273
+ "Nocardia brasiliensis ATCC 700358": 1271,
1274
+ "Nocardia farcinica IFM 10152": 1272,
1275
+ "Nocardia uniformis subsp. tsuyamanensis": 1273,
1276
+ "Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111": 1274,
1277
+ "Nonlabens dokdonensis DSW-6": 1275,
1278
+ "Nosema bombycis CQ1": 1276,
1279
+ "Nostoc punctiforme PCC 73102": 1277,
1280
+ "Notechis scutatus niger": 1278,
1281
+ "Notechis scutatus scutatus": 1279,
1282
+ "Novosphingobium aromaticivorans DSM 12444": 1280,
1283
+ "Nyctalus plancyi velutinus": 1281,
1284
+ "Oceanicola granulosus HTCC2516": 1282,
1285
+ "Oceanobacillus iheyensis HTE831": 1283,
1286
+ "Odobenus rosmarus divergens": 1284,
1287
+ "Odobenus rosmarus rosmarus": 1285,
1288
+ "Odocoileus virginianus virginianus": 1286,
1289
+ "Oenococcus oeni PSU-1": 1287,
1290
+ "Oenothera elata subsp. hookeri": 1288,
1291
+ "Ogataea parapolymorpha DL-1": 1289,
1292
+ "Oidiodendron maius Zn": 1290,
1293
+ "Oleidesulfovibrio alaskensis G20": 1291,
1294
+ "Olsenella uli DSM 7084": 1292,
1295
+ "Onion yellows phytoplasma OY-M": 1293,
1296
+ "Ophrys x arachnitiformis subsp. archipelagi": 1294,
1297
+ "Opitutus terrae PB90-1": 1295,
1298
+ "Orbilia oligospora ATCC 24927": 1296,
1299
+ "Orientia tsutsugamushi str. Boryong": 1297,
1300
+ "Orientia tsutsugamushi str. Ikeda": 1298,
1301
+ "Ostreococcus lucimarinus CCE9901": 1299,
1302
+ "Ovis ammon darwini": 1300,
1303
+ "Ovis aries musimon": 1301,
1304
+ "Oxyuranus scutellatus canni": 1302,
1305
+ "Oxyuranus scutellatus scutellatus": 1303,
1306
+ "Paenarthrobacter aurescens TC1": 1304,
1307
+ "Paenibacillus alvei DSM 29": 1305,
1308
+ "Paenibacillus larvae subsp. larvae B-3650": 1306,
1309
+ "Paenibacillus macquariensis subsp. macquariensis": 1307,
1310
+ "Paenibacillus polymyxa E681": 1308,
1311
+ "Paenibacillus polymyxa SC2": 1309,
1312
+ "Paeonia mascula subsp. russoi": 1310,
1313
+ "Paludibacter propionicigenes WB4": 1311,
1314
+ "Panthera pardus orientalis": 1312,
1315
+ "Panthera pardus saxicolor": 1313,
1316
+ "Panthera tigris altaica": 1314,
1317
+ "Panthera tigris sumatrae": 1315,
1318
+ "Panthera tigris tigris": 1316,
1319
+ "Pantoea ananatis AJ13355": 1317,
1320
+ "Pantoea ananatis LMG 20103": 1318,
1321
+ "Pantoea stewartii subsp. stewartii": 1319,
1322
+ "Pantoea vagans C9-1": 1320,
1323
+ "Parabacteroides distasonis ATCC 8503": 1321,
1324
+ "Paraburkholderia graminis C4D1M": 1322,
1325
+ "Paraburkholderia phymatum STM815": 1323,
1326
+ "Paraburkholderia phytofirmans PsJN": 1324,
1327
+ "Paraburkholderia xenovorans LB400": 1325,
1328
+ "Parachartergus vespiceps testaceus": 1326,
1329
+ "Paracidovorax avenae ATCC 19860": 1327,
1330
+ "Paracidovorax citrulli AAC00-1": 1328,
1331
+ "Paraclostridium sordellii ATCC 9714": 1329,
1332
+ "Paracoccidioides brasiliensis Pb03": 1330,
1333
+ "Paracoccidioides brasiliensis Pb18": 1331,
1334
+ "Paracoccidioides lutzii Pb01": 1332,
1335
+ "Paracoccus denitrificans PD1222": 1333,
1336
+ "Paramagnetospirillum magneticum AMB-1": 1334,
1337
+ "Paramaledivibacter caminithermalis DSM 15212": 1335,
1338
+ "Parastagonospora nodorum SN15": 1336,
1339
+ "Parasynechococcus marenigrum WH 8102": 1337,
1340
+ "Parvibaculum lavamentivorans DS-1": 1338,
1341
+ "Pasteurella multocida subsp. multocida str. Pm70": 1339,
1342
+ "Pectobacterium atrosepticum SCRI1043": 1340,
1343
+ "Pectobacterium carotovorum subsp. carotovorum": 1341,
1344
+ "Pectobacterium carotovorum subsp. carotovorum PC1": 1342,
1345
+ "Pectobacterium parmentieri WPP163": 1343,
1346
+ "Pediculus humanus corporis": 1344,
1347
+ "Pediococcus pentosaceus ATCC 25745": 1345,
1348
+ "Pedobacter heparinus DSM 2366": 1346,
1349
+ "Pedosphaera parvula Ellin514": 1347,
1350
+ "Pelagibacterium halotolerans B2": 1348,
1351
+ "Pelobacter propionicus DSM 2379": 1349,
1352
+ "Pelodictyon luteolum DSM 273": 1350,
1353
+ "Pelodictyon phaeoclathratiforme BU-1": 1351,
1354
+ "Pelodiscus sinensis japonicus": 1352,
1355
+ "Pelophylax porosus brevipodus": 1353,
1356
+ "Pelotomaculum thermopropionicum SI": 1354,
1357
+ "Penicillium camemberti FM 013": 1355,
1358
+ "Penicillium digitatum PHI26": 1356,
1359
+ "Penicillium digitatum Pd1": 1357,
1360
+ "Penicillium oxalicum 114-2": 1358,
1361
+ "Penicillium roqueforti FM164": 1359,
1362
+ "Penicillium rubens Wisconsin 54-1255": 1360,
1363
+ "Perinereis vancaurica tetradentata": 1361,
1364
+ "Perodicticus potto edwarsi": 1362,
1365
+ "Perognathus flavescens apache": 1363,
1366
+ "Peromyscus maniculatus bairdii": 1364,
1367
+ "Persephonella marina EX-H1": 1365,
1368
+ "Pestalotiopsis fici W106-1": 1366,
1369
+ "Petrotoga mobilis SJ95": 1367,
1370
+ "Petunia axillaris subsp. parodii": 1368,
1371
+ "Phaeodactylum tricornutum CCAP 1055/1": 1369,
1372
+ "Phalaenopsis aphrodite subsp. formosana": 1370,
1373
+ "Phanerochaete carnosa HHB-10118-sp": 1371,
1374
+ "Phanerochaete chrysosporium RP-78": 1372,
1375
+ "Phasianus colchicus colchicus": 1373,
1376
+ "Phenylobacterium zucineum HLK1": 1374,
1377
+ "Phlebiopsis gigantea 11061_1 CR5-6": 1375,
1378
+ "Phoca vitulina richardii": 1376,
1379
+ "Phocaeicola plebeius DSM 17135": 1377,
1380
+ "Phocaeicola vulgatus ATCC 8482": 1378,
1381
+ "Phocoenoides dalli dalli": 1379,
1382
+ "Phoradendron leucarpum subsp. tomentosum": 1380,
1383
+ "Photobacterium angustum S14": 1381,
1384
+ "Photobacterium damselae subsp. damselae": 1382,
1385
+ "Photobacterium damselae subsp. piscicida": 1383,
1386
+ "Photobacterium leiognathi subsp. mandapamensis": 1384,
1387
+ "Photobacterium profundum SS9": 1385,
1388
+ "Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949": 1386,
1389
+ "Photorhabdus laumondii subsp. laumondii TTO1": 1387,
1390
+ "Phycomyces blakesleeanus NRRL 1555(-)": 1388,
1391
+ "Phytophthora infestans T30-4": 1389,
1392
+ "Phytophthora nicotianae INRA-310": 1390,
1393
+ "Phytophthora sojae strain P6497": 1391,
1394
+ "Picrophilus oshimae DSM 9789": 1392,
1395
+ "Piloderma croceum F 1598": 1393,
1396
+ "Pinus mugo subsp. uncinata": 1394,
1397
+ "Pirellula staleyi DSM 6068": 1395,
1398
+ "Planctopirus limnophila DSM 3776": 1396,
1399
+ "Planigale maculata maculata": 1397,
1400
+ "Planigale maculata sinualis": 1398,
1401
+ "Planktothrix agardhii NIVA-CYA 126/8": 1399,
1402
+ "Plasmodium berghei ANKA": 1400,
1403
+ "Plasmodium chabaudi chabaudi": 1401,
1404
+ "Plasmodium cynomolgi strain B": 1402,
1405
+ "Plasmodium cynomolgi strain Berok": 1403,
1406
+ "Plasmodium cynomolgi strain Ceylon": 1404,
1407
+ "Plasmodium cynomolgi strain Gombak": 1405,
1408
+ "Plasmodium cynomolgi strain London": 1406,
1409
+ "Plasmodium cynomolgi strain Mulligan/NIH": 1407,
1410
+ "Plasmodium falciparum 7G8": 1408,
1411
+ "Plasmodium falciparum CAMP/Malaysia": 1409,
1412
+ "Plasmodium falciparum CDC/Honduras": 1410,
1413
+ "Plasmodium falciparum FC27/Papua New Guinea": 1411,
1414
+ "Plasmodium falciparum FCBR/Columbia": 1412,
1415
+ "Plasmodium falciparum FCH-5": 1413,
1416
+ "Plasmodium falciparum FCM17/Senegal": 1414,
1417
+ "Plasmodium falciparum Fid3/India": 1415,
1418
+ "Plasmodium falciparum IMR143": 1416,
1419
+ "Plasmodium falciparum K1": 1417,
1420
+ "Plasmodium falciparum Mad20/Papua New Guinea": 1418,
1421
+ "Plasmodium falciparum Mad71/Papua New Guinea": 1419,
1422
+ "Plasmodium falciparum NF7/Ghana": 1420,
1423
+ "Plasmodium falciparum Nig32/Nigeria": 1421,
1424
+ "Plasmodium falciparum Palo Alto/Uganda": 1422,
1425
+ "Plasmodium falciparum RO-33": 1423,
1426
+ "Plasmodium falciparum T4/Thailand": 1424,
1427
+ "Plasmodium falciparum TAK 9": 1425,
1428
+ "Plasmodium falciparum THTN/Thailand": 1426,
1429
+ "Plasmodium falciparum V1": 1427,
1430
+ "Plasmodium knowlesi strain H": 1428,
1431
+ "Plasmodium knowlesi strain Nuri": 1429,
1432
+ "Plasmodium vivax Brazil I": 1430,
1433
+ "Plasmodium vivax Sal-1": 1431,
1434
+ "Plasmodium vivax strain Belem": 1432,
1435
+ "Plasmodium yoelii yoelii": 1433,
1436
+ "Plenodomus lingam JN3": 1434,
1437
+ "Pleurotus ostreatus PC15": 1435,
1438
+ "Pneumocystis carinii B80": 1436,
1439
+ "Pochonia chlamydosporia 123": 1437,
1440
+ "Podospora anserina S mat+": 1438,
1441
+ "Polaromonas naphthalenivorans CJ2": 1439,
1442
+ "Polybia scutellaris rioplatensis": 1440,
1443
+ "Polynucleobacter asymbioticus QLW-P1DMWA-1": 1441,
1444
+ "Polynucleobacter necessarius STIR1": 1442,
1445
+ "Polytolypa hystricis UAMH7299": 1443,
1446
+ "Porphyromonas endodontalis ATCC 35406": 1444,
1447
+ "Porphyromonas gingivalis ATCC 33277": 1445,
1448
+ "Porphyromonas gingivalis W83": 1446,
1449
+ "Postia placenta Mad-698-R": 1447,
1450
+ "Prescottella equi 103S": 1448,
1451
+ "Priestia megaterium DSM 319": 1449,
1452
+ "Priestia megaterium NBRC 15308 = ATCC 14581": 1450,
1453
+ "Priestia megaterium QM B1551": 1451,
1454
+ "Priestia megaterium WSH-002": 1452,
1455
+ "Procavia capensis habessinica": 1453,
1456
+ "Prochlorococcus marinus str. AS9601": 1454,
1457
+ "Prochlorococcus marinus str. DV1": 1455,
1458
+ "Prochlorococcus marinus str. MIT 9211": 1456,
1459
+ "Prochlorococcus marinus str. MIT 9215": 1457,
1460
+ "Prochlorococcus marinus str. MIT 9301": 1458,
1461
+ "Prochlorococcus marinus str. MIT 9303": 1459,
1462
+ "Prochlorococcus marinus str. MIT 9312": 1460,
1463
+ "Prochlorococcus marinus str. MIT 9313": 1461,
1464
+ "Prochlorococcus marinus str. MIT 9515": 1462,
1465
+ "Prochlorococcus marinus str. NATL1A": 1463,
1466
+ "Prochlorococcus marinus str. NATL2A": 1464,
1467
+ "Prochlorococcus marinus subsp. marinus str. CCMP1375": 1465,
1468
+ "Prochlorococcus marinus subsp. pastoris str. CCMP1986": 1466,
1469
+ "Prochlorococcus marinus subsp. pastoris str. PCC 9511": 1467,
1470
+ "Propionibacterium freudenreichii subsp. freudenreichii": 1468,
1471
+ "Propionibacterium freudenreichii subsp. shermanii": 1469,
1472
+ "Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1": 1470,
1473
+ "Propithecus diadema diadema": 1471,
1474
+ "Prosthecochloris aestuarii DSM 271": 1472,
1475
+ "Proteus mirabilis HI4320": 1473,
1476
+ "Providencia stuartii MRSN 2154": 1474,
1477
+ "Pseudanabaena galeata PCC 6901": 1475,
1478
+ "Pseudanabaena tenuis PCC 7409": 1476,
1479
+ "Pseudarthrobacter chlorophenolicus A6": 1477,
1480
+ "Pseudarthrobacter phenanthrenivorans Sphe3": 1478,
1481
+ "Pseudoalteromonas luteoviolacea 2ta16": 1479,
1482
+ "Pseudoalteromonas translucida TAC125": 1480,
1483
+ "Pseudocercospora fijiensis CIRAD86": 1481,
1484
+ "Pseudogymnoascus destructans 20631-21": 1482,
1485
+ "Pseudomonas [fluorescens] SBW25": 1483,
1486
+ "Pseudomonas aeruginosa BWHPSA011": 1484,
1487
+ "Pseudomonas aeruginosa LESB58": 1485,
1488
+ "Pseudomonas aeruginosa PA103": 1486,
1489
+ "Pseudomonas aeruginosa PAK": 1487,
1490
+ "Pseudomonas aeruginosa PAO1": 1488,
1491
+ "Pseudomonas aeruginosa UCBPP-PA14": 1489,
1492
+ "Pseudomonas brassicacearum subsp. brassicacearum NFM421": 1490,
1493
+ "Pseudomonas chlororaphis subsp. chlororaphis": 1491,
1494
+ "Pseudomonas entomophila L48": 1492,
1495
+ "Pseudomonas fluorescens Pf0-1": 1493,
1496
+ "Pseudomonas fluorescens Q2-87": 1494,
1497
+ "Pseudomonas fulva 12-X": 1495,
1498
+ "Pseudomonas knackmussii B13": 1496,
1499
+ "Pseudomonas paraeruginosa PA7": 1497,
1500
+ "Pseudomonas protegens CHA0": 1498,
1501
+ "Pseudomonas protegens Pf-5": 1499,
1502
+ "Pseudomonas putida B6-2": 1500,
1503
+ "Pseudomonas putida DOT-T1E": 1501,
1504
+ "Pseudomonas putida F1": 1502,
1505
+ "Pseudomonas putida GB-1": 1503,
1506
+ "Pseudomonas putida KT2440": 1504,
1507
+ "Pseudomonas putida S16": 1505,
1508
+ "Pseudomonas putida W619": 1506,
1509
+ "Pseudomonas savastanoi pv. phaseolicola 1448A": 1507,
1510
+ "Pseudomonas syringae pv. syringae B728a": 1508,
1511
+ "Pseudomonas syringae pv. syringae FF5": 1509,
1512
+ "Pseudomonas syringae pv. tomato str. DC3000": 1510,
1513
+ "Pseudonaja textilis textilis": 1511,
1514
+ "Pseudonocardia dioxanivorans CB1190": 1512,
1515
+ "Pseudooceanicola batsensis HTCC2597": 1513,
1516
+ "Pseudothermotoga lettingae TMO": 1514,
1517
+ "Psychrobacter arcticus 273-4": 1515,
1518
+ "Psychrobacter cryohalolentis K5": 1516,
1519
+ "Psychrobacter lutiphocae DSM 21542": 1517,
1520
+ "Psychroflexus torquis ATCC 700755": 1518,
1521
+ "Psychromonas ingrahamii 37": 1519,
1522
+ "Pteridium aquilinum subsp. aquilinum": 1520,
1523
+ "Puccinia graminis f. sp. tritici CRL 75-36-700-3": 1521,
1524
+ "Pyrenophora teres f. teres 0-1": 1522,
1525
+ "Pyrenophora tritici-repentis Pt-1C-BFP": 1523,
1526
+ "Pyricularia oryzae 70-15": 1524,
1527
+ "Pyricularia oryzae Y34": 1525,
1528
+ "Pyrobaculum aerophilum str. IM2": 1526,
1529
+ "Pyrobaculum arsenaticum DSM 13514": 1527,
1530
+ "Pyrobaculum calidifontis JCM 11548": 1528,
1531
+ "Pyrobaculum islandicum DSM 4184": 1529,
1532
+ "Pyrobaculum neutrophilum V24Sta": 1530,
1533
+ "Pyrococcus abyssi GE5": 1531,
1534
+ "Pyrococcus furiosus DSM 3638": 1532,
1535
+ "Pyrococcus horikoshii OT3": 1533,
1536
+ "Rahnella aquatilis CIP 78.65 = ATCC 33071": 1534,
1537
+ "Ralstonia pickettii 12D": 1535,
1538
+ "Ralstonia pickettii 12J": 1536,
1539
+ "Ralstonia pseudosolanacearum GMI1000": 1537,
1540
+ "Ralstonia solanacearum UW551": 1538,
1541
+ "Renibacterium salmoninarum ATCC 33209": 1539,
1542
+ "Rhabdophis tigrinus tigrinus": 1540,
1543
+ "Rhinolophus pusillus blythi": 1541,
1544
+ "Rhizobium etli CFN 42": 1542,
1545
+ "Rhizobium etli CIAT 652": 1543,
1546
+ "Rhizobium johnstonii 3841": 1544,
1547
+ "Rhizobium leguminosarum bv. trifolii WSM1325": 1545,
1548
+ "Rhizobium leguminosarum bv. trifolii WSM2304": 1546,
1549
+ "Rhizobium rhizogenes K84": 1547,
1550
+ "Rhizophagus irregularis DAOM 181602=DAOM 197198": 1548,
1551
+ "Rhizopus delemar RA 99-880": 1549,
1552
+ "Rhizorhabdus wittichii DC-6": 1550,
1553
+ "Rhizorhabdus wittichii RW1": 1551,
1554
+ "Rhodobacter capsulatus SB 1003": 1552,
1555
+ "Rhodococcus erythropolis PR4": 1553,
1556
+ "Rhodococcus erythropolis XP": 1554,
1557
+ "Rhodococcus jostii RHA1": 1555,
1558
+ "Rhodococcus opacus B4": 1556,
1559
+ "Rhodoferax ferrireducens T118": 1557,
1560
+ "Rhodomicrobium vannielii ATCC 17100": 1558,
1561
+ "Rhodopirellula baltica SH 1": 1559,
1562
+ "Rhodopseudomonas palustris BisA53": 1560,
1563
+ "Rhodopseudomonas palustris BisB18": 1561,
1564
+ "Rhodopseudomonas palustris BisB5": 1562,
1565
+ "Rhodopseudomonas palustris CGA009": 1563,
1566
+ "Rhodopseudomonas palustris HaA2": 1564,
1567
+ "Rhodopseudomonas palustris TIE-1": 1565,
1568
+ "Rhodospirillum centenum SW": 1566,
1569
+ "Rhodospirillum rubrum ATCC 11170": 1567,
1570
+ "Rhodospirillum rubrum F11": 1568,
1571
+ "Rhodothermus marinus DSM 4252": 1569,
1572
+ "Rhodothermus marinus SG0.5JP17-172": 1570,
1573
+ "Rickettsia africae ESF-5": 1571,
1574
+ "Rickettsia akari str. Hartford": 1572,
1575
+ "Rickettsia bellii OSU 85-389": 1573,
1576
+ "Rickettsia bellii RML369-C": 1574,
1577
+ "Rickettsia canadensis str. McKiel": 1575,
1578
+ "Rickettsia conorii str. Malish 7": 1576,
1579
+ "Rickettsia conorii subsp. caspia A-167": 1577,
1580
+ "Rickettsia felis URRWXCal2": 1578,
1581
+ "Rickettsia japonica YH": 1579,
1582
+ "Rickettsia massiliae MTU5": 1580,
1583
+ "Rickettsia peacockii str. Rustic": 1581,
1584
+ "Rickettsia prowazekii str. Madrid E": 1582,
1585
+ "Rickettsia rickettsii str. 'Sheila Smith'": 1583,
1586
+ "Rickettsia rickettsii str. Iowa": 1584,
1587
+ "Rickettsia sibirica 246": 1585,
1588
+ "Rickettsia sibirica subsp. mongolitimonae": 1586,
1589
+ "Rickettsia slovaca 13-B": 1587,
1590
+ "Rickettsia typhi str. Wilmington": 1588,
1591
+ "Rippkaea orientalis PCC 8801": 1589,
1592
+ "Roseburia hominis A2-183": 1590,
1593
+ "Roseibium aggregatum IAM 12614": 1591,
1594
+ "Roseibium alexandrii DFL-11": 1592,
1595
+ "Roseiflexus castenholzii DSM 13941": 1593,
1596
+ "Roseobacter denitrificans OCh 114": 1594,
1597
+ "Roseobacter litoralis Och 149": 1595,
1598
+ "Roseovarius nubinhibens ISM": 1596,
1599
+ "Rothia mucilaginosa DY-18": 1597,
1600
+ "Rubinisphaera brasiliensis DSM 5305": 1598,
1601
+ "Rubrivivax gelatinosus IL144": 1599,
1602
+ "Rubrobacter xylanophilus DSM 9941": 1600,
1603
+ "Ruegeria lacuscaerulensis ITI-1157": 1601,
1604
+ "Ruegeria pomeroyi DSS-3": 1602,
1605
+ "Ruminiclostridium cellulolyticum H10": 1603,
1606
+ "Ruminococcus albus 7 = DSM 20455": 1604,
1607
+ "Runella zeae DSM 19591": 1605,
1608
+ "Rusa unicolor swinhoei": 1606,
1609
+ "Saccharolobus islandicus HVE10/4": 1607,
1610
+ "Saccharolobus islandicus L.D.8.5": 1608,
1611
+ "Saccharolobus islandicus L.S.2.15": 1609,
1612
+ "Saccharolobus islandicus M.14.25": 1610,
1613
+ "Saccharolobus islandicus M.16.27": 1611,
1614
+ "Saccharolobus islandicus M.16.4": 1612,
1615
+ "Saccharolobus islandicus REY15A": 1613,
1616
+ "Saccharolobus islandicus Y.G.57.14": 1614,
1617
+ "Saccharolobus islandicus Y.N.15.51": 1615,
1618
+ "Saccharolobus shibatae B12": 1616,
1619
+ "Saccharolobus solfataricus 98/2": 1617,
1620
+ "Saccharolobus solfataricus P2": 1618,
1621
+ "Saccharomonospora viridis DSM 43017": 1619,
1622
+ "Saccharomyces cerevisiae AWRI1631": 1620,
1623
+ "Saccharomyces cerevisiae AWRI796": 1621,
1624
+ "Saccharomyces cerevisiae CEN.PK113-7D": 1622,
1625
+ "Saccharomyces cerevisiae EC1118": 1623,
1626
+ "Saccharomyces cerevisiae FostersB": 1624,
1627
+ "Saccharomyces cerevisiae FostersO": 1625,
1628
+ "Saccharomyces cerevisiae JAY291": 1626,
1629
+ "Saccharomyces cerevisiae Kyokai no. 7": 1627,
1630
+ "Saccharomyces cerevisiae Lalvin QA23": 1628,
1631
+ "Saccharomyces cerevisiae RM11-1a": 1629,
1632
+ "Saccharomyces cerevisiae S288C": 1630,
1633
+ "Saccharomyces cerevisiae VL3": 1631,
1634
+ "Saccharomyces cerevisiae Vin13": 1632,
1635
+ "Saccharomyces cerevisiae YJM789": 1633,
1636
+ "Saccharomyces kudriavzevii IFO 1802": 1634,
1637
+ "Saccharomyces pastorianus CBS 1503": 1635,
1638
+ "Saccharomyces pastorianus CBS 1513": 1636,
1639
+ "Saccharomyces uvarum CLIB 533": 1637,
1640
+ "Saccharophagus degradans 2-40": 1638,
1641
+ "Saccharopolyspora erythraea NRRL 2338": 1639,
1642
+ "Saccharothrix espanaensis DSM 44229": 1640,
1643
+ "Saccharothrix mutabilis subsp. capreolus": 1641,
1644
+ "Sagittula stellata E-37": 1642,
1645
+ "Saguinus bicolor bicolor": 1643,
1646
+ "Saguinus midas midas": 1644,
1647
+ "Saimiri boliviensis boliviensis": 1645,
1648
+ "Salinibacter ruber DSM 13855": 1646,
1649
+ "Salinibacter ruber M8": 1647,
1650
+ "Salinispora arenicola CNS-205": 1648,
1651
+ "Salinispora tropica CNB-440": 1649,
1652
+ "Salipiger bermudensis HTCC2601": 1650,
1653
+ "Salmonella bongori NCTC 12419": 1651,
1654
+ "Salmonella enterica subsp. arizonae": 1652,
1655
+ "Salmonella enterica subsp. diarizonae": 1653,
1656
+ "Salmonella enterica subsp. enterica": 1654,
1657
+ "Salmonella enterica subsp. enterica serovar Agona str. SL483": 1655,
1658
+ "Salmonella enterica subsp. enterica serovar Choleraesuis str. SC-B67": 1656,
1659
+ "Salmonella enterica subsp. enterica serovar Dublin str. CT_02021853": 1657,
1660
+ "Salmonella enterica subsp. enterica serovar Enteritidis str. 2009K0958": 1658,
1661
+ "Salmonella enterica subsp. enterica serovar Enteritidis str. P125109": 1659,
1662
+ "Salmonella enterica subsp. enterica serovar Gallinarum str. 287/91": 1660,
1663
+ "Salmonella enterica subsp. enterica serovar Heidelberg str. 579083-10": 1661,
1664
+ "Salmonella enterica subsp. enterica serovar Heidelberg str. SL476": 1662,
1665
+ "Salmonella enterica subsp. enterica serovar Newport str. SL254": 1663,
1666
+ "Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601": 1664,
1667
+ "Salmonella enterica subsp. enterica serovar Paratyphi A str. ATCC 9150": 1665,
1668
+ "Salmonella enterica subsp. enterica serovar Paratyphi B str. SPB7": 1666,
1669
+ "Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594": 1667,
1670
+ "Salmonella enterica subsp. enterica serovar Schwarzengrund str. CVM19633": 1668,
1671
+ "Salmonella enterica subsp. enterica serovar Typhimurium str. D23580": 1669,
1672
+ "Salmonella enterica subsp. enterica serovar Typhimurium str. LT2": 1670,
1673
+ "Salmonella enterica subsp. enterica serovar Typhimurium str. SL1344": 1671,
1674
+ "Salmonella enterica subsp. enterica serovar Typhimurium str. ST4/74": 1672,
1675
+ "Salmonella enterica subsp. enterica serovar Typhimurium str. UK-1": 1673,
1676
+ "Salmonella enterica subsp. enterica serovar Virchow str. SL491": 1674,
1677
+ "Salmonella enterica subsp. houtenae": 1675,
1678
+ "Salmonella enterica subsp. londinensis": 1676,
1679
+ "Sanguibacter keddieii DSM 10542": 1677,
1680
+ "Saprolegnia parasitica CBS 223.65": 1678,
1681
+ "Scheffersomyces stipitis CBS 6054": 1679,
1682
+ "Schizophyllum commune H4-8": 1680,
1683
+ "Schizosaccharomyces japonicus yFS275": 1681,
1684
+ "Schizosaccharomyces pombe 972h-": 1682,
1685
+ "Sclerotinia sclerotiorum 1980 UF-70": 1683,
1686
+ "Scolia decorata ventralis": 1684,
1687
+ "Scolopendra viridicornis nigra": 1685,
1688
+ "Sebaldella termitidis ATCC 33386": 1686,
1689
+ "Sediminispirochaeta smaragdinae DSM 11293": 1687,
1690
+ "Segniliparus rotundus DSM 44985": 1688,
1691
+ "Segniliparus rugosus ATCC BAA-974": 1689,
1692
+ "Serpula lacrymans var. lacrymans S7.9": 1690,
1693
+ "Serratia proteamaculans 568": 1691,
1694
+ "Shewanella amazonensis SB2B": 1692,
1695
+ "Shewanella baltica OS155": 1693,
1696
+ "Shewanella baltica OS185": 1694,
1697
+ "Shewanella baltica OS195": 1695,
1698
+ "Shewanella baltica OS223": 1696,
1699
+ "Shewanella denitrificans OS217": 1697,
1700
+ "Shewanella frigidimarina NCIMB 400": 1698,
1701
+ "Shewanella halifaxensis HAW-EB4": 1699,
1702
+ "Shewanella loihica PV-4": 1700,
1703
+ "Shewanella oneidensis MR-1": 1701,
1704
+ "Shewanella pealeana ATCC 700345": 1702,
1705
+ "Shewanella piezotolerans WP3": 1703,
1706
+ "Shewanella putrefaciens CN-32": 1704,
1707
+ "Shewanella sediminis HAW-EB3": 1705,
1708
+ "Shewanella violacea DSS12": 1706,
1709
+ "Shewanella woodyi ATCC 51908": 1707,
1710
+ "Shigella boydii CDC 3083-94": 1708,
1711
+ "Shigella boydii Sb227": 1709,
1712
+ "Shigella dysenteriae Sd197": 1710,
1713
+ "Shigella flexneri 2002017": 1711,
1714
+ "Shigella flexneri 5 str. 8401": 1712,
1715
+ "Shigella flexneri 5a str. M90T": 1713,
1716
+ "Shigella sonnei Ss046": 1714,
1717
+ "Shimwellia blattae DSM 4481 = NBRC 105725": 1715,
1718
+ "Shouchella clausii KSM-K16": 1716,
1719
+ "Silene latifolia subsp. alba": 1717,
1720
+ "Singulisphaera acidiphila DSM 18658": 1718,
1721
+ "Sinorhizobium fredii HH103": 1719,
1722
+ "Sinorhizobium fredii NGR234": 1720,
1723
+ "Sinorhizobium fredii USDA 257": 1721,
1724
+ "Sinorhizobium medicae WSM419": 1722,
1725
+ "Sinorhizobium meliloti 1021": 1723,
1726
+ "Sinorhizobium meliloti 2011": 1724,
1727
+ "Sistrurus catenatus edwardsi": 1725,
1728
+ "Sistrurus miliarius barbouri": 1726,
1729
+ "Sistrurus miliarius streckeri": 1727,
1730
+ "Slackia exigua ATCC 700122": 1728,
1731
+ "Slackia heliotrinireducens DSM 20476": 1729,
1732
+ "Sodalis glossinidius str. 'morsitans'": 1730,
1733
+ "Sodiomyces alkalinus F11": 1731,
1734
+ "Solenopsis globularia littoralis": 1732,
1735
+ "Solenopsis nigella gensterblumi": 1733,
1736
+ "Solibacillus silvestris StLB046": 1734,
1737
+ "Solidesulfovibrio magneticus RS-1": 1735,
1738
+ "Sorangium cellulosum So ce56": 1736,
1739
+ "Sordaria macrospora k-hell": 1737,
1740
+ "Sorex shinto sadonis": 1738,
1741
+ "Sphaerobacter thermophilus DSM 20745": 1739,
1742
+ "Sphaerobolus stellatus SS14": 1740,
1743
+ "Sphex argentatus argentatus": 1741,
1744
+ "Sphingobacterium faecium NBRC 15299": 1742,
1745
+ "Sphingobium herbicidovorans NBRC 16415": 1743,
1746
+ "Sphingobium indicum B90A": 1744,
1747
+ "Sphingobium indicum UT26S": 1745,
1748
+ "Sphingopyxis alaskensis RB2256": 1746,
1749
+ "Sphyrna tiburo tiburo": 1747,
1750
+ "Sphyrna tiburo vespertina": 1748,
1751
+ "Spirosoma linguale DSM 74": 1749,
1752
+ "Sporisorium reilianum SRZ2": 1750,
1753
+ "Sporothrix schenckii ATCC 58251": 1751,
1754
+ "Stachybotrys chartarum IBT 7711": 1752,
1755
+ "Stachybotrys chlorohalonatus IBT 40285": 1753,
1756
+ "Stackebrandtia nassauensis DSM 44728": 1754,
1757
+ "Staphylococcus aureus 04-02981": 1755,
1758
+ "Staphylococcus aureus RF122": 1756,
1759
+ "Staphylococcus aureus subsp. aureus COL": 1757,
1760
+ "Staphylococcus aureus subsp. aureus ED98": 1758,
1761
+ "Staphylococcus aureus subsp. aureus JH1": 1759,
1762
+ "Staphylococcus aureus subsp. aureus JH9": 1760,
1763
+ "Staphylococcus aureus subsp. aureus MRSA252": 1761,
1764
+ "Staphylococcus aureus subsp. aureus MSSA476": 1762,
1765
+ "Staphylococcus aureus subsp. aureus MW2": 1763,
1766
+ "Staphylococcus aureus subsp. aureus Mu3": 1764,
1767
+ "Staphylococcus aureus subsp. aureus Mu50": 1765,
1768
+ "Staphylococcus aureus subsp. aureus N315": 1766,
1769
+ "Staphylococcus aureus subsp. aureus NCTC 8325": 1767,
1770
+ "Staphylococcus aureus subsp. aureus ST398": 1768,
1771
+ "Staphylococcus aureus subsp. aureus TCH60": 1769,
1772
+ "Staphylococcus aureus subsp. aureus TW20": 1770,
1773
+ "Staphylococcus aureus subsp. aureus USA300": 1771,
1774
+ "Staphylococcus aureus subsp. aureus str. JKD6008": 1772,
1775
+ "Staphylococcus aureus subsp. aureus str. Newman": 1773,
1776
+ "Staphylococcus carnosus subsp. carnosus TM300": 1774,
1777
+ "Staphylococcus cohnii subsp. cohnii": 1775,
1778
+ "Staphylococcus epidermidis ATCC 12228": 1776,
1779
+ "Staphylococcus epidermidis RP62A": 1777,
1780
+ "Staphylococcus haemolyticus JCSC1435": 1778,
1781
+ "Staphylococcus lugdunensis HKU09-01": 1779,
1782
+ "Staphylococcus pseudintermedius ED99": 1780,
1783
+ "Staphylococcus pseudintermedius HKU10-03": 1781,
1784
+ "Staphylococcus saprophyticus subsp. saprophyticus ATCC 15305 = NCTC 7292": 1782,
1785
+ "Staphylothermus marinus F1": 1783,
1786
+ "Stenotrophomonas maltophilia K279a": 1784,
1787
+ "Stenotrophomonas maltophilia R551-3": 1785,
1788
+ "Stereum hirsutum FP-91666 SS1": 1786,
1789
+ "Stigmatella aurantiaca DW4/3-1": 1787,
1790
+ "Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488": 1788,
1791
+ "Streptobacillus moniliformis DSM 12112": 1789,
1792
+ "Streptococcus agalactiae 2603V/R": 1790,
1793
+ "Streptococcus agalactiae A909": 1791,
1794
+ "Streptococcus agalactiae ATCC 13813": 1792,
1795
+ "Streptococcus agalactiae COH1": 1793,
1796
+ "Streptococcus agalactiae NEM316": 1794,
1797
+ "Streptococcus dysgalactiae subsp. equisimilis": 1795,
1798
+ "Streptococcus dysgalactiae subsp. equisimilis GGS_124": 1796,
1799
+ "Streptococcus equi subsp. equi 4047": 1797,
1800
+ "Streptococcus equi subsp. zooepidemicus ATCC 35246": 1798,
1801
+ "Streptococcus equi subsp. zooepidemicus H70": 1799,
1802
+ "Streptococcus equi subsp. zooepidemicus MGCS10565": 1800,
1803
+ "Streptococcus gallolyticus UCN34": 1801,
1804
+ "Streptococcus gallolyticus subsp. gallolyticus ATCC 43143": 1802,
1805
+ "Streptococcus gordonii str. Challis": 1803,
1806
+ "Streptococcus intermedius SK54 = ATCC 27335": 1804,
1807
+ "Streptococcus macedonicus ACA-DC 198": 1805,
1808
+ "Streptococcus mitis B6": 1806,
1809
+ "Streptococcus mutans NN2025": 1807,
1810
+ "Streptococcus mutans UA159": 1808,
1811
+ "Streptococcus oralis Uo5": 1809,
1812
+ "Streptococcus parasanguinis ATCC 15912": 1810,
1813
+ "Streptococcus pneumoniae 70585": 1811,
1814
+ "Streptococcus pneumoniae ATCC 700669": 1812,
1815
+ "Streptococcus pneumoniae CGSP14": 1813,
1816
+ "Streptococcus pneumoniae D39": 1814,
1817
+ "Streptococcus pneumoniae G54": 1815,
1818
+ "Streptococcus pneumoniae Hungary19A-6": 1816,
1819
+ "Streptococcus pneumoniae JJA": 1817,
1820
+ "Streptococcus pneumoniae P1031": 1818,
1821
+ "Streptococcus pneumoniae R6": 1819,
1822
+ "Streptococcus pneumoniae TIGR4": 1820,
1823
+ "Streptococcus pneumoniae Taiwan19F-14": 1821,
1824
+ "Streptococcus pyogenes MGAS10270": 1822,
1825
+ "Streptococcus pyogenes MGAS10394": 1823,
1826
+ "Streptococcus pyogenes MGAS10750": 1824,
1827
+ "Streptococcus pyogenes MGAS2096": 1825,
1828
+ "Streptococcus pyogenes MGAS315": 1826,
1829
+ "Streptococcus pyogenes MGAS6180": 1827,
1830
+ "Streptococcus pyogenes MGAS8232": 1828,
1831
+ "Streptococcus pyogenes MGAS9429": 1829,
1832
+ "Streptococcus pyogenes NZ131": 1830,
1833
+ "Streptococcus pyogenes SSI-1": 1831,
1834
+ "Streptococcus pyogenes str. Manfredo": 1832,
1835
+ "Streptococcus salivarius 57.I": 1833,
1836
+ "Streptococcus salivarius CCHSS3": 1834,
1837
+ "Streptococcus salivarius JIM8777": 1835,
1838
+ "Streptococcus sanguinis SK36": 1836,
1839
+ "Streptococcus suis 05ZYH33": 1837,
1840
+ "Streptococcus suis 89/1591": 1838,
1841
+ "Streptococcus suis 98HAH33": 1839,
1842
+ "Streptococcus suis BM407": 1840,
1843
+ "Streptococcus suis GZ1": 1841,
1844
+ "Streptococcus suis P1/7": 1842,
1845
+ "Streptococcus suis SC84": 1843,
1846
+ "Streptococcus thermophilus CNRZ1066": 1844,
1847
+ "Streptococcus thermophilus LMD-9": 1845,
1848
+ "Streptococcus thermophilus LMG 18311": 1846,
1849
+ "Streptococcus uberis 0140J": 1847,
1850
+ "Streptomyces achromogenes subsp. streptozoticus": 1848,
1851
+ "Streptomyces albus G": 1849,
1852
+ "Streptomyces albus subsp. albus DSM 41398": 1850,
1853
+ "Streptomyces ambofaciens ATCC 23877": 1851,
1854
+ "Streptomyces avermitilis MA-4680 = NBRC 14893": 1852,
1855
+ "Streptomyces bingchenggensis BCW-1": 1853,
1856
+ "Streptomyces coelicolor A3(2)": 1854,
1857
+ "Streptomyces collinus Tu 365": 1855,
1858
+ "Streptomyces davaonensis JCM 4913": 1856,
1859
+ "Streptomyces griseus subsp. griseus NBRC 13350": 1857,
1860
+ "Streptomyces hygroscopicus subsp. jinggangensis 5008": 1858,
1861
+ "Streptomyces hygroscopicus subsp. limoneus": 1859,
1862
+ "Streptomyces nodosus subsp. asukaensis": 1860,
1863
+ "Streptomyces peucetius subsp. caesius": 1861,
1864
+ "Streptomyces pratensis ATCC 33331": 1862,
1865
+ "Streptomyces pristinaespiralis ATCC 25486": 1863,
1866
+ "Streptomyces rapamycinicus NRRL 5491": 1864,
1867
+ "Streptomyces rimosus subsp. rimosus ATCC 10970": 1865,
1868
+ "Streptomyces roseochromogenus subsp. oscitans": 1866,
1869
+ "Streptomyces scabiei 87.22": 1867,
1870
+ "Streptomyces somaliensis DSM 40738": 1868,
1871
+ "Streptomyces sviceus ATCC 29083": 1869,
1872
+ "Streptomyces tsukubensis NRRL18488": 1870,
1873
+ "Streptomyces venezuelae ATCC 10712": 1871,
1874
+ "Streptomyces violaceusniger Tu 4113": 1872,
1875
+ "Streptomyces viridochromogenes DSM 40736": 1873,
1876
+ "Streptomyces viridosporus ATCC 14672": 1874,
1877
+ "Streptosporangium roseum DSM 43021": 1875,
1878
+ "Stromatopelma calceatum griseipes": 1876,
1879
+ "Stutzerimonas stutzeri A1501": 1877,
1880
+ "Succinatimonas hippei YIT 12066": 1878,
1881
+ "Sulfobacillus thermosulfidooxidans DSM 9293": 1879,
1882
+ "Sulfolobus acidocaldarius DSM 639": 1880,
1883
+ "Sulfurihydrogenibium azorense Az-Fu1": 1881,
1884
+ "Sulfurimonas autotrophica DSM 16294": 1882,
1885
+ "Sulfurimonas denitrificans DSM 1251": 1883,
1886
+ "Sulfurisphaera tokodaii str. 7": 1884,
1887
+ "Sulfurospirillum multivorans DSM 12446": 1885,
1888
+ "Symbiobacterium thermophilum IAM 14863": 1886,
1889
+ "Synechococcus elongatus PCC 6301": 1887,
1890
+ "Synechococcus elongatus PCC 7942 = FACHB-805": 1888,
1891
+ "Syntrophobacter fumaroxidans MPOB": 1889,
1892
+ "Syntrophomonas palmitatica JCM 14374": 1890,
1893
+ "Syntrophomonas wolfei subsp. wolfei str. Goettingen G311": 1891,
1894
+ "Syntrophotalea carbinolica DSM 2380": 1892,
1895
+ "Syntrophus aciditrophicus SB": 1893,
1896
+ "Tachyglossus aculeatus aculeatus": 1894,
1897
+ "Talaromyces marneffei ATCC 18224": 1895,
1898
+ "Talaromyces stipitatus ATCC 10500": 1896,
1899
+ "Tannerella forsythia 92A2": 1897,
1900
+ "Taylorella asinigenitalis MCE3": 1898,
1901
+ "Taylorella equigenitalis MCE9": 1899,
1902
+ "Teredinibacter turnerae T7901": 1900,
1903
+ "Tetrahymena thermophila SB210": 1901,
1904
+ "Thalictrum flavum subsp. glaucum": 1902,
1905
+ "Thauera butanivorans NBRC 103042": 1903,
1906
+ "Thauera linaloolentis 47Lol = DSM 12138": 1904,
1907
+ "Thermacetogenium phaeum DSM 12270": 1905,
1908
+ "Thermanaerovibrio acidaminovorans DSM 6589": 1906,
1909
+ "Thermoanaerobacter italicus Ab9": 1907,
1910
+ "Thermoanaerobacter pseudethanolicus ATCC 33223": 1908,
1911
+ "Thermoanaerobacterium saccharolyticum JW/SL-YS485": 1909,
1912
+ "Thermoanaerobacterium thermosaccharolyticum DSM 571": 1910,
1913
+ "Thermobaculum terrenum ATCC BAA-798": 1911,
1914
+ "Thermobifida fusca YX": 1912,
1915
+ "Thermobispora bispora DSM 43833": 1913,
1916
+ "Thermochaetoides thermophila DSM 1495": 1914,
1917
+ "Thermoclostridium stercorarium subsp. stercorarium DSM 8532": 1915,
1918
+ "Thermococcus barophilus MP": 1916,
1919
+ "Thermococcus gammatolerans EJ3": 1917,
1920
+ "Thermococcus kodakarensis KOD1": 1918,
1921
+ "Thermococcus litoralis DSM 5473": 1919,
1922
+ "Thermococcus onnurineus NA1": 1920,
1923
+ "Thermococcus sibiricus MM 739": 1921,
1924
+ "Thermocrinis albus DSM 14484": 1922,
1925
+ "Thermodesulfobacterium geofontis OPF15": 1923,
1926
+ "Thermodesulfovibrio yellowstonii DSM 11347": 1924,
1927
+ "Thermofilum pendens Hrk 5": 1925,
1928
+ "Thermomicrobium roseum DSM 5159": 1926,
1929
+ "Thermomonospora curvata DSM 43183": 1927,
1930
+ "Thermoplasma acidophilum DSM 1728": 1928,
1931
+ "Thermoplasma volcanium GSS1": 1929,
1932
+ "Thermoproteus tenax Kra 1": 1930,
1933
+ "Thermoproteus uzoniensis 768-20": 1931,
1934
+ "Thermosediminibacter oceani DSM 16646": 1932,
1935
+ "Thermosipho africanus H17ap60334": 1933,
1936
+ "Thermosipho africanus TCF52B": 1934,
1937
+ "Thermosipho melanesiensis BI429": 1935,
1938
+ "Thermosphaera aggregans DSM 11486": 1936,
1939
+ "Thermosulfidibacter takaii ABI70S6": 1937,
1940
+ "Thermosynechococcus vestitus BP-1": 1938,
1941
+ "Thermothelomyces thermophilus ATCC 42464": 1939,
1942
+ "Thermothielavioides terrestris NRRL 8126": 1940,
1943
+ "Thermotoga maritima MSB8": 1941,
1944
+ "Thermotoga neapolitana DSM 4359": 1942,
1945
+ "Thermotoga petrophila RKU-1": 1943,
1946
+ "Thermovibrio ammonificans HB-1": 1944,
1947
+ "Thermus aquaticus Y51MC23": 1945,
1948
+ "Thermus scotoductus SA-01": 1946,
1949
+ "Thermus thermophilus HB27": 1947,
1950
+ "Thermus thermophilus HB8": 1948,
1951
+ "Thioalkalivibrio nitratireducens DSM 14787": 1949,
1952
+ "Thioalkalivibrio sulfidiphilus HL-EbGr7": 1950,
1953
+ "Thiobacillus denitrificans ATCC 25259": 1951,
1954
+ "Thiomicrospira cyclica ALM1": 1952,
1955
+ "Thiomonas intermedia K12": 1953,
1956
+ "Thiothrix nivea DSM 5205": 1954,
1957
+ "Tolumonas auensis DSM 9187": 1955,
1958
+ "Toxoplasma gondii GT1": 1956,
1959
+ "Toxoplasma gondii ME49": 1957,
1960
+ "Toxoplasma gondii VEG": 1958,
1961
+ "Trachemys scripta elegans": 1959,
1962
+ "Trametes coccinea BRFM310": 1960,
1963
+ "Trametes versicolor FP-101664 SS1": 1961,
1964
+ "Treponema denticola ATCC 35405": 1962,
1965
+ "Treponema pallidum subsp. pallidum SS14": 1963,
1966
+ "Treponema pallidum subsp. pallidum str. Nichols": 1964,
1967
+ "Treponema pallidum subsp. pertenue": 1965,
1968
+ "Treponema succinifaciens DSM 2489": 1966,
1969
+ "Trichlorobacter lovleyi SZ": 1967,
1970
+ "Trichoderma asperellum CBS 433.97": 1968,
1971
+ "Trichoderma atroviride IMI 206040": 1969,
1972
+ "Trichoderma reesei QM6a": 1970,
1973
+ "Trichoderma reesei RUT C-30": 1971,
1974
+ "Trichoderma virens Gv29-8": 1972,
1975
+ "Trichodesmium erythraeum IMS101": 1973,
1976
+ "Trichophyton benhamiae CBS 112371": 1974,
1977
+ "Trichophyton equinum CBS 127.97": 1975,
1978
+ "Trichophyton interdigitale MR816": 1976,
1979
+ "Trichophyton rubrum CBS 118892": 1977,
1980
+ "Trichophyton tonsurans CBS 112818": 1978,
1981
+ "Trichophyton verrucosum HKI 0517": 1979,
1982
+ "Trichormus variabilis ATCC 29413": 1980,
1983
+ "Triticum turgidum subsp. durum": 1981,
1984
+ "Tropheryma whipplei TW08/27": 1982,
1985
+ "Tropheryma whipplei str. Twist": 1983,
1986
+ "Truepera radiovictrix DSM 17093": 1984,
1987
+ "Trypanosoma brucei brucei": 1985,
1988
+ "Trypanosoma brucei brucei TREU927": 1986,
1989
+ "Trypanosoma brucei gambiense": 1987,
1990
+ "Trypanosoma brucei gambiense DAL972": 1988,
1991
+ "Trypanosoma brucei rhodesiense": 1989,
1992
+ "Trypanosoma cruzi strain CL Brener": 1990,
1993
+ "Tsukamurella paurometabola DSM 20162": 1991,
1994
+ "Tuber melanosporum Mel28": 1992,
1995
+ "Tulipa saxatilis subsp. bakeri": 1993,
1996
+ "Uncinocarpus reesii 1704": 1994,
1997
+ "Ureaplasma parvum serovar 3 str. ATCC 27815": 1995,
1998
+ "Ureaplasma parvum serovar 3 str. ATCC 700970": 1996,
1999
+ "Ureaplasma urealyticum serovar 10 str. ATCC 33699": 1997,
2000
+ "Vairimorpha ceranae BRL01": 1998,
2001
+ "Vanderwaltozyma polyspora DSM 70294": 1999,
2002
+ "Varecia variegata variegata": 2000,
2003
+ "Variovorax paradoxus EPS": 2001,
2004
+ "Variovorax paradoxus S110": 2002,
2005
+ "Veillonella parvula DSM 2008": 2003,
2006
+ "Verminephrobacter eiseniae EF01-2": 2004,
2007
+ "Verrucomicrobium spinosum DSM 4136 = JCM 18804": 2005,
2008
+ "Verticillium alfalfae VaMs.102": 2006,
2009
+ "Verticillium dahliae VdLs.17": 2007,
2010
+ "Vespa simillima xanthoptera": 2008,
2011
+ "Vespa velutina flavitarsus": 2009,
2012
+ "Vespa velutina nigrithorax": 2010,
2013
+ "Vibrio alginolyticus NBRC 15630 = ATCC 17749": 2011,
2014
+ "Vibrio anguillarum 775": 2012,
2015
+ "Vibrio atlanticus LGP32": 2013,
2016
+ "Vibrio campbellii ATCC BAA-1116": 2014,
2017
+ "Vibrio campbellii HY01": 2015,
2018
+ "Vibrio cholerae M66-2": 2016,
2019
+ "Vibrio cholerae MJ-1236": 2017,
2020
+ "Vibrio cholerae MO10": 2018,
2021
+ "Vibrio cholerae O1 biovar El Tor str. N16961": 2019,
2022
+ "Vibrio cholerae O395": 2020,
2023
+ "Vibrio coralliilyticus ATCC BAA-450": 2021,
2024
+ "Vibrio harveyi 1DA3": 2022,
2025
+ "Vibrio parahaemolyticus AQ3810": 2023,
2026
+ "Vibrio parahaemolyticus RIMD 2210633": 2024,
2027
+ "Vibrio ruber DSM 16370": 2025,
2028
+ "Vibrio splendidus 12B01": 2026,
2029
+ "Vibrio vulnificus CMCP6": 2027,
2030
+ "Vibrio vulnificus YJ016": 2028,
2031
+ "Vicia sativa subsp. nigra": 2029,
2032
+ "Vigna unguiculata subsp. cylindrica": 2030,
2033
+ "Vigna unguiculata subsp. sesquipedalis": 2031,
2034
+ "Vigna unguiculata subsp. unguiculata": 2032,
2035
+ "Vipera ammodytes ammodytes": 2033,
2036
+ "Vipera ammodytes meridionalis": 2034,
2037
+ "Vipera aspis aspis": 2035,
2038
+ "Vipera aspis zinnikeri": 2036,
2039
+ "Vipera berus berus": 2037,
2040
+ "Vulcanisaeta distributa DSM 14429": 2038,
2041
+ "Vulcanisaeta moutnovskia 768-28": 2039,
2042
+ "Wallemia ichthyophaga EXF-994": 2040,
2043
+ "Weissella koreensis KACC 15510": 2041,
2044
+ "Weissella oryzae SG25": 2042,
2045
+ "Wickerhamomyces anomalus NRRL Y-366": 2043,
2046
+ "Wickerhamomyces anomalus NRRL Y-366-8": 2044,
2047
+ "Wickerhamomyces ciferrii NRRL Y-1031": 2045,
2048
+ "Winmispira thermophila DSM 6192": 2046,
2049
+ "Winmispira thermophila DSM 6578": 2047,
2050
+ "Wolbachia endosymbiont of Culex quinquefasciatus Pel": 2048,
2051
+ "Wolbachia endosymbiont strain TRS of Brugia malayi": 2049,
2052
+ "Wolfiporia cocos MD-104 SS10": 2050,
2053
+ "Wolinella succinogenes DSM 1740": 2051,
2054
+ "Xanthomonas campestris pv. campestris str. 8004": 2052,
2055
+ "Xanthomonas campestris pv. campestris str. ATCC 33913": 2053,
2056
+ "Xanthomonas campestris pv. campestris str. B100": 2054,
2057
+ "Xanthomonas citri pv. citri str. 306": 2055,
2058
+ "Xanthomonas euvesicatoria pv. vesicatoria str. 85-10": 2056,
2059
+ "Xanthomonas euvesicatoria pv. viticola LMG 965": 2057,
2060
+ "Xanthomonas oryzae pv. oryzae KACC 10331": 2058,
2061
+ "Xanthomonas oryzae pv. oryzae MAFF 311018": 2059,
2062
+ "Xanthomonas oryzae pv. oryzae PXO99A": 2060,
2063
+ "Xanthomonas oryzae pv. oryzicola BLS256": 2061,
2064
+ "Xenorhabdus bovienii SS-2004": 2062,
2065
+ "Xenorhabdus nematophila ATCC 19061": 2063,
2066
+ "Xylanibacter ruminicola 23": 2064,
2067
+ "Xylanimonas cellulosilytica DSM 15894": 2065,
2068
+ "Xylella fastidiosa 9a5c": 2066,
2069
+ "Xylella fastidiosa M12": 2067,
2070
+ "Xylella fastidiosa M23": 2068,
2071
+ "Xylella fastidiosa Temecula1": 2069,
2072
+ "Xylocopa appendiculata circumvolans": 2070,
2073
+ "Yarrowia lipolytica CLIB122": 2071,
2074
+ "Yersinia enterocolitica subsp. enterocolitica 8081": 2072,
2075
+ "Yersinia enterocolitica subsp. palearctica Y11": 2073,
2076
+ "Yersinia enterocolitica subsp. palearctica YE-P4": 2074,
2077
+ "Yersinia mollaretii ATCC 43969": 2075,
2078
+ "Yersinia pestis Angola": 2076,
2079
+ "Yersinia pestis Antiqua": 2077,
2080
+ "Yersinia pestis D106004": 2078,
2081
+ "Yersinia pestis D182038": 2079,
2082
+ "Yersinia pestis Nepal516": 2080,
2083
+ "Yersinia pestis Pestoides F": 2081,
2084
+ "Yersinia pestis Z176003": 2082,
2085
+ "Yersinia pseudotuberculosis IP 31758": 2083,
2086
+ "Yersinia pseudotuberculosis IP 32953": 2084,
2087
+ "Yersinia pseudotuberculosis PB1/+": 2085,
2088
+ "Yersinia pseudotuberculosis YPIII": 2086,
2089
+ "Yersinia ruckeri ATCC 29473": 2087,
2090
+ "Zea mays subsp. huehuetenangensis": 2088,
2091
+ "Zea mays subsp. mexicana": 2089,
2092
+ "Zea mays subsp. parviglumis": 2090,
2093
+ "Zunongwangia profunda SM-A87": 2091,
2094
+ "Zygosaccharomyces rouxii CBS 732": 2092,
2095
+ "Zymomonas mobilis subsp. mobilis ATCC 10988": 2093,
2096
+ "Zymomonas mobilis subsp. mobilis NCIMB 11163": 2094,
2097
+ "Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821": 2095,
2098
+ "Zymomonas mobilis subsp. pomaceae ATCC 29192": 2096,
2099
+ "Zymoseptoria tritici IPO323": 2097,
2100
+ "Zymoseptoria tritici ST99CH_3D7": 2098,
2101
+ "[Acidovorax] ebreus TPSY": 2099,
2102
+ "[Bacillus thuringiensis] serovar konkukian str. 97-27": 2100,
2103
+ "[Bacillus] selenitireducens MLS10": 2101,
2104
+ "[Clostridium] saccharolyticum WM1": 2102,
2105
+ "[Clostridium] scindens ATCC 35704": 2103,
2106
+ "[Clostridium] symbiosum WAL-14163": 2104,
2107
+ "[Enterobacter] lignolyticus SCF1": 2105,
2108
+ "[Eubacterium] cellulosolvens 6": 2106,
2109
+ "[Haemophilus] ducreyi 35000HP": 2107,
2110
+ "[Mannheimia] succiniciproducens MBEL55E": 2108
2111
+ }
dataset/validation_superset/validation_homolog/validation_homolog.fasta ADDED
The diff for this file is too large to render. See raw diff
 
dataset/validation_superset/validation_homolog/validation_homolog_terms.tsv ADDED
The diff for this file is too large to render. See raw diff
 
dataset/validation_superset/validation_novel/validation_novel.fasta ADDED
The diff for this file is too large to render. See raw diff
 
dataset/validation_superset/validation_novel/validation_novel_terms.tsv ADDED
The diff for this file is too large to render. See raw diff
 
dataset/validation_superset/validation_superset.fasta ADDED
The diff for this file is too large to render. See raw diff
 
dataset/validation_superset/validation_superset_term.tsv ADDED
The diff for this file is too large to render. See raw diff
 
local_train.py ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+ import subprocess
4
+ import argparse
5
+
6
+ def main():
7
+ parser = argparse.ArgumentParser(description="Local training launcher for Taxon-aware ESM2")
8
+ parser.add_argument("--dry_run", action="store_true", help="Run a quick dry run to verify pipeline")
9
+
10
+ args = parser.parse_args()
11
+
12
+ # Define paths
13
+ ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
14
+ SRC_DIR = os.path.join(ROOT_DIR, "src")
15
+ DATASET_DIR = os.path.join(ROOT_DIR, "dataset")
16
+
17
+ # Verify input directories
18
+ if not os.path.exists(SRC_DIR):
19
+ print(f"Error: Source directory not found at {SRC_DIR}")
20
+ return
21
+ if not os.path.exists(DATASET_DIR):
22
+ print(f"Error: Dataset directory not found at {DATASET_DIR}")
23
+ return
24
+
25
+ print(f"Root Dir: {ROOT_DIR}")
26
+ print(f"Src Dir: {SRC_DIR}")
27
+ print(f"Data Dir: {DATASET_DIR}")
28
+
29
+ # Construct the command
30
+ # We run from SRC_DIR to match Azure ML behavior and allow relative imports
31
+ cmd = [
32
+ sys.executable, "train.py",
33
+ "--data_path", DATASET_DIR,
34
+ "--epochs", "5",
35
+ "--batch_size", "64",
36
+ "--lr", "1e-4",
37
+ "--min_lr", "5e-6",
38
+ "--num_workers", "8", # 0 for local windows debugging usually safer
39
+ "--esm_model_name", "facebook/esm2_t6_8M_UR50D",
40
+ "--use_lora", "True",
41
+ "--lora_rank", "8",
42
+ # Asymmetric Loss defaults
43
+ "--gamma_neg", "4",
44
+ "--gamma_pos", "0",
45
+ "--clip", "0.05",
46
+
47
+ # Absolute locations for output
48
+ "--output_dir", os.path.join(ROOT_DIR, "outputs"),
49
+ "--mlflow_dir", os.path.join(ROOT_DIR, "mlruns")
50
+ ]
51
+
52
+ if args.dry_run:
53
+ cmd.append("--dry_run")
54
+
55
+ print(f"Running command: {' '.join(cmd)}")
56
+ print("-" * 50)
57
+
58
+ # Run the training script
59
+ try:
60
+ # cwd=SRC_DIR is crucial for relative imports
61
+ subprocess.run(cmd, cwd=SRC_DIR, check=True)
62
+ except subprocess.CalledProcessError as e:
63
+ print(f"Training failed with error code {e.returncode}")
64
+ except KeyboardInterrupt:
65
+ print("\nTraining interrupted by user.")
66
+ except Exception as e:
67
+ print(f"An unexpected error occurred: {e}")
68
+
69
+ if __name__ == "__main__":
70
+ main()
model_analysis.py ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import matplotlib.pyplot as plt
3
+ import seaborn as sns
4
+ import numpy as np
5
+ import os
6
+ import sys
7
+ from transformers import AutoTokenizer
8
+
9
+ # Add src to sys.path to allow imports from src/model.py and src/dataset.py
10
+ sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
11
+
12
+ # Import your modules
13
+ from model import TaxonomyAwareESM
14
+ from dataset import ProteinTaxonomyDataset
15
+
16
+ def analyze_attention(checkpoint_path, data_path, target_ids, device='cuda'):
17
+ print(f"=== Loading Checkpoint: {checkpoint_path} ===")
18
+
19
+ # 1. Load Model Architecture
20
+
21
+ checkpoint = torch.load(checkpoint_path, map_location=device)
22
+ state_dict = checkpoint.get('model_state_dict', checkpoint) # Handle full checkpoint vs state dict only
23
+
24
+ # Infer num_classes from the classifier weights in state_dict
25
+ # Model definition: self.classifier = nn.Linear(..., num_classes)
26
+ # So key is 'classifier.weight'
27
+ if 'classifier.weight' in state_dict:
28
+ num_classes = state_dict['classifier.weight'].shape[0]
29
+ elif 'classifier.3.weight' in state_dict: # Keeping fallback if user had MLP before
30
+ num_classes = state_dict['classifier.3.weight'].shape[0]
31
+ else:
32
+ # Try to guess or fail
33
+ print("Warning: Could not infer num_classes from state_dict keys. Keys:", state_dict.keys())
34
+ raise KeyError("Could not find classifier weights")
35
+
36
+ print(f"Detected Num Classes: {num_classes}")
37
+
38
+ model = TaxonomyAwareESM(
39
+ num_classes=num_classes,
40
+ pretrained_model_name="facebook/esm2_t6_8M_UR50D",
41
+ freeze_backbone=True
42
+ )
43
+
44
+ model.load_state_dict(state_dict, strict=False) # STRICT=FALSE because we might miss some metadata
45
+ model.to(device)
46
+ model.eval()
47
+
48
+ # 2. Hook Cross-Attention to capture weights
49
+ attn_weights_storage = {}
50
+
51
+ def get_attn_weights(name):
52
+ def hook(module, input, output):
53
+ # output of MultiheadAttention is (attn_output, attn_output_weights)
54
+ # attn_output_weights shape: [Batch, Target_Len, Source_Len]
55
+ # Here: [1, Seq_Len, 7] (7 is Taxonomy Ranks)
56
+ # Note: batch_first=True in model definition
57
+ attn_weights_storage[name] = output[1].detach().cpu()
58
+ return hook
59
+
60
+ model.cross_attention.register_forward_hook(get_attn_weights('cross_attn'))
61
+
62
+
63
+ # 3. Load Samples from Large Learning Superset
64
+ print("Loading dataset...")
65
+ # Setup Paths
66
+ fasta_path = os.path.join(data_path, "learning_superset", "large_learning_superset.fasta")
67
+ term_path = os.path.join(data_path, "learning_superset", "large_learning_superset_term.tsv")
68
+ species_vec = os.path.join(data_path, "taxon_embedding", "species_vectors.tsv")
69
+ go_vocab = os.path.join("src", "go_terms.json") # Relative to root
70
+
71
+ tokenizer = AutoTokenizer.from_pretrained("facebook/esm2_t6_8M_UR50D")
72
+
73
+ # Lightweight dataset init
74
+ # Note: parsing the huge fasta might take a moment.
75
+ # To be faster, we could scan for the IDs first, but ProteinTaxonomyDataset loads everything.
76
+ # Given the constraints, let's load it.
77
+ dataset = ProteinTaxonomyDataset(
78
+ fasta_path, term_path, species_vec, go_vocab,
79
+ max_len=512,
80
+ esm_tokenizer=tokenizer
81
+ )
82
+
83
+ print(f"Dataset loaded. Total samples: {len(dataset)}")
84
+
85
+ # Filter for target IDs
86
+ target_indices = []
87
+ # We need to map ID to index.
88
+ # Dataset doesn't expose a quick map, so we iterate.
89
+ # This might be slow for 75MB fasta, but acceptable for a one-off script.
90
+
91
+ print(f"Searching for target IDs: {target_ids}")
92
+ found_count = 0
93
+
94
+ # Optimally, we access dataset information if available.
95
+ # Checking dataset implementation... unique_ids list usually exists.
96
+ if hasattr(dataset, 'protein_ids'):
97
+ for idx, pid in enumerate(dataset.protein_ids):
98
+ if pid in target_ids:
99
+ target_indices.append(idx)
100
+ found_count += 1
101
+ else:
102
+ # Fallback: iterate (slower)
103
+ for i in range(len(dataset)):
104
+ if dataset[i]['entry_id'] in target_ids:
105
+ target_indices.append(i)
106
+ found_count += 1
107
+ if found_count >= len(target_ids):
108
+ break
109
+
110
+ print(f"Found {len(target_indices)} samples matching targets.")
111
+
112
+ # Create output directory
113
+ output_dir = os.path.join("outputs", "attention_map")
114
+ os.makedirs(output_dir, exist_ok=True)
115
+
116
+ for idx in target_indices:
117
+ sample = dataset[idx]
118
+
119
+ # Prepare batch
120
+ input_ids = sample['input_ids'].unsqueeze(0).to(device)
121
+ attention_mask = sample['attention_mask'].unsqueeze(0).to(device)
122
+ tax_vector = sample['tax_vector'].unsqueeze(0).to(device)
123
+ prot_id = sample.get('entry_id', 'Unknown')
124
+
125
+ print(f"Analyzing Protein ID: {prot_id}")
126
+
127
+ # 4. Forward Pass
128
+ # Clear previous hooks just in case
129
+ attn_weights_storage.clear()
130
+
131
+ with torch.no_grad():
132
+ _ = model(input_ids, attention_mask, tax_vector)
133
+
134
+ # 5. Visualize
135
+ if 'cross_attn' not in attn_weights_storage:
136
+ print(f"Error: Hook did not capture attention weights for {prot_id}.")
137
+ continue
138
+
139
+ # attn_weights shape: [1, Seq_Len, 7]
140
+ weights = attn_weights_storage['cross_attn'][0] # Remove batch dim -> [Seq_Len, 7]
141
+
142
+ # Remove padding from visualization
143
+ seq_len = attention_mask.sum().item()
144
+ weights = weights[:seq_len, :] # [Real_Seq_Len, 7]
145
+
146
+ # Plot
147
+ plt.figure(figsize=(12, 8))
148
+ # Transpose for easier reading: Y-axis = Taxonomy Ranks, X-axis = Sequence Position
149
+ sns.heatmap(weights.T.numpy(), cmap='viridis',
150
+ yticklabels=["Kingdom", "Phylum", "Class", "Order", "Family", "Genus", "Species"])
151
+ plt.title(f"Cross-Attention Map - Protein {prot_id}")
152
+ plt.xlabel("Sequence Position (Residues)")
153
+ plt.ylabel("Taxonomic Rank")
154
+
155
+ save_path = os.path.join(output_dir, f"{prot_id}.png")
156
+ plt.savefig(save_path)
157
+ plt.close() # Close plot to save memory
158
+ print(f"Analysis saved to {save_path}")
159
+
160
+ print("\n[Interpretation Guide]")
161
+ print("- Uniform Color? -> Model hasn't learned to distinguish ranks yet.")
162
+ print("- Vertical Stripes? -> Specific residues attend to ALL ranks (Structural importance).")
163
+ print("- Horizontal Stripes? -> Some ranks are universally more important.")
164
+ print("- Scattered Hotspots? -> IDEAL. Specific residues attend to specific ranks.")
165
+
166
+ if __name__ == "__main__":
167
+ # Target IDs from earlier investigation of large_learning_superset.fasta
168
+ targets = [
169
+ "P0DPQ6", "A0A0C5B5G6", "P40205",
170
+ "F5H094", "Q6RFH8", "Q0D2H9",
171
+ "L0R8F8", "P0DMW2", "Q6L8H1", "A0A1B0GTW7"
172
+ ]
173
+
174
+ analyze_attention(
175
+ checkpoint_path="outputs/best_model_fmax.pth",
176
+ data_path=".",
177
+ target_ids=targets,
178
+ device='cuda' if torch.cuda.is_available() else 'cpu'
179
+ )
requirements.txt ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ numpy>=1.21.0
2
+ pandas>=1.3.0
3
+ scipy>=1.7.0
4
+ scikit-learn>=1.0.0
5
+ h5py>=3.0.0
6
+ torch>=2.0.0 --index-url https://download.pytorch.org/whl/cu118
7
+ torchvision>=0.15.0 --index-url https://download.pytorch.org/whl/cu118
8
+ tqdm>=4.62.0
9
+ matplotlib>=3.4.0
10
+ seaborn>=0.11.0
11
+ biopython>=1.79
12
+ mlflow>=2.0.0
13
+ peft>=0.4.0
14
+ gputil
15
+ transformers
16
+ goatools
17
+ adjustText
18
+ onnx
19
+ onnxscript
src/CAFA-evaluator-PK/.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ src/*.ipynb filter=strip-notebook-output
src/CAFA-evaluator-PK/.gitignore ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ src/__pycache__/
2
+ src/cafaeval/__pycache__/
3
+ eval/
4
+ process_df.ipynb
5
+ ia.ipynb
6
+ harmonic_mean.ipynb
7
+ .idea
8
+ /src/cafaeval.egg-info/
9
+ /.venv/
10
+ /dist/
11
+ src/.ipynb_checkpoints
12
+
src/CAFA-evaluator-PK/CHANGELOG.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [current] -
5
+ - We are working to include the calculation of bootstrap confidence intervals.
6
+
7
+ ## [1.2.1] - 2024-03-26
8
+ - Minor bugfix affecting multi-thread calculation.
9
+
10
+ ## [1.2.0] - 2024-02-01
11
+ - We included micro-average metrics. Now precision, recall and F-score
12
+ in addition to previously reported metrics are calculated as micro-averages
13
+ by averaging the confusion matrices over targets before calculating aggregated metrics
14
+ (precision, recall, ect.).
15
+ - We include the calculation of the average precision score (APS) in the plot notebook.
16
+
17
+ ### Changed
18
+ - plot.ipynb, added calculation of average precision score (APS) in the plot notebook.
19
+ - evaluation.py, micro-average calculation, some refactoring of the core functions.
20
+ - parser.py, minor fixes and improvements.
21
+
22
+ ## [1.1.0] - 2024-01-24
23
+
24
+ - We changed the way alternative identifiers in ontology files are considered.
25
+ Now alternative identifiers are recognized in both the ground truth and prediction files
26
+ and mapped to the "canonical" term.
27
+
28
+ ### Added
29
+ - CHANGELOG.md, this file!
30
+
31
+ ### Changed
32
+ - graph.py, changed the Graph class.
33
+ - parser.py, changed the ground truth and prediction parsers in order
34
+ to replace alternative identifiers with canonical terms.
35
+ - plot.ipynb, cleaned up.
36
+
37
+
38
+ ## [1.0.0] - 2023-08-04
39
+
40
+ First release after CAFA5 challenge closed. The version used in Kaggle is
41
+ provided under the 'Kaggle' branch. The 'main' branch includes instead a
42
+ packed version of the code. While usage and performance has been improved
43
+ the calculation is exactly the same.
src/CAFA-evaluator-PK/EvalutingCAFAPartial.jpg ADDED

Git LFS Details

  • SHA256: 429cc5d75f21ff3b5f2b39f16ff022794d65d54326354cd3856a1847aa3379d5
  • Pointer size: 131 Bytes
  • Size of remote file: 365 kB
src/CAFA-evaluator-PK/LICENCE.md ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ CAFA-evaluator, CAFA style evaluation of DAG predictions
635
+ Copyright (C) 2022 Damiano Piovesan
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ CAFA-evaluator Copyright (C) 2022 Damiano Piovesan
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <https://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
src/CAFA-evaluator-PK/README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CAFA-evaluator (CAFA4+ Edition)
2
+
3
+ This repo was branched from the [CAFA-evaluator](https://github.com/BioComputingUP/CAFA-evaluator) and additional functionality was added.
4
+ Visit the original [CAFA-evaluator Wiki](https://github.com/BioComputingUP/CAFA-evaluator/wiki) for more information about the algorithm.
5
+
6
+
7
+ The two main new functionalities are:
8
+ * **Flexible terms-of-interest**
9
+ A file can be passed in with a list of ontology terms that will be evaluated for all proteins. Only terms included in the file
10
+ will be evaluated. This can be used to exclude terms that were added to the ontology since predictions were collected or to
11
+ exclude terms that have been deemed uninformative or for whatever reason should not be included in evaluation.
12
+
13
+ In the figure below, the terms of interest are shown with a red outline.
14
+ These terms will be evaluated for _all proteins_ for which there are annotations in the ground truth file.
15
+
16
+ * **Protein-specific known annotations**
17
+ To evaluate under the "Partial Knowledge" evaluation setting, any annotations known previous to prediction should be excluded from
18
+ evaluation. This exclusion is done similarly to the terms-of-interst, but for each individual protein.
19
+
20
+ In the figure below, the annotations are shown for a single protein. Terms with annotations known before the prediction phase are
21
+ shown in yellow in the Cellular Component and Molecular Function aspects of the Gene Ontology. These terms should be excluded from
22
+ evaluation. New annotations are shown to the right in blue. Evaluation should happen _only_ for these terms. If the newly annotated
23
+ terms do not appear in the terms-of-interest file, they will not be evaluated.
24
+
25
+ A known-annotations file can be passed in for any evaluation setting and will not have and effect in No-Knowledge or Limited-Knowledge
26
+ evaluation. For example in the figure below, if a known-annotations file is passed in with the terms in yellow listed, the Limited-Knowlege
27
+ evaluation of the Biological Process (BP) aspect will produce the same results as if the file was not passed in at all. This is because
28
+ there are no known terms in BP for this process and they will not appear in the known annotations file.
29
+
30
+ ![Evaluting CAFA Partial Knowledge setting and using terms of interest](EvalutingCAFAPartial.jpg)
31
+
32
+
33
+
34
+ ## Citation
35
+ Please cite the original CAFA Evaluator and, once available, the forthcoming CAFA 5 papers if you use this code in published research
36
+ [CAFA-evaluator: A Python Tool for Benchmarking Ontological Classification Methods](https://doi.org/10.1093/bioadv/vbae043)
37
+ *D Piovesan, D Zago, P Joshi, MC De Paolis Kaluza, M Mehdiabadi, R Ramola, AM Monzon, W Reade, I Friedberg, P Radivojac, SCE Tosatto*
38
+ **Bioinformatics Advances (2024)** - DOI: [10.1093/bioadv/vbae043](https://doi.org/10.1093/bioadv/vbae043)
39
+
40
+ Crowdsourcing the fifth critical assessment of protein function annotation algorithms (CAFA 5) yields improvement in protein function prediction
41
+ *TBD*
42
+ **TBD** - DOI: TBD
43
+
44
+
45
+ ## Usage
46
+
47
+ The program can be executing the command line interface or as a library.
48
+ Both the command line and the library accept the following positional arguments:
49
+
50
+ * **Ontology file** in OBO format
51
+
52
+ * _**NEW**_: **Terms of Interst file** contains term names that appear in the OBO file to be included in evaluation
53
+
54
+ * _**NEW**_: **Known annotations file** contains annotations known before the evaluation phase
55
+
56
+ * **Prediction folder** contain prediction files. Files can be organized into sub-folders,
57
+ sub-folders are processed recursively and the sub-folder name is used as prefix for the method name
58
+
59
+ * **Ground truth file** containing targets and associated ontology terms
60
+
61
+ Example input files are provided inside the `data/example` folder.
62
+
63
+ ### Command line
64
+
65
+ When executed from the command line the script logs information about the calculation in the console (standard error) and
66
+ will create a folder named `results` containing the evaluation results.
67
+ A different folder can be specified using the `-out_dir` option.
68
+
69
+ The original CAFA-evaluator functionality works as before without additional imput arguments
70
+
71
+ ```bashcon
72
+ python3 /path/to/CAFA-evaluator/src/cafaeval/__main__.py ontology_file prediction_folder ground_truth_file
73
+ ```
74
+
75
+ _**NEW**_: By default, all terms in the ontology will be considered in the evaluation. To include only specific terms, provide a terms-of-interest file
76
+ ```bashcon
77
+ python3 /path/to/CAFA-evaluator/src/cafaeval/__main__.py ontology_file prediction_folder ground_truth_file -toi terms_of_interest_file
78
+ ```
79
+
80
+ _**NEW**_: To evaluate Partial Knowledge annotations, the known annotations file must be passed in with the `-known` option.
81
+ ```bashcon
82
+ python3 /path/to/CAFA-evaluator/src/cafaeval/__main__.py ontology_file prediction_folder ground_truth_file -known known_annotations_file
83
+ ```
84
+
85
+ _**NEW**_: You can pass in both terms-of-interest and known annotations:
86
+ ```bashcon
87
+ python3 /path/to/CAFA-evaluator/src/cafaeval/__main__.py ontology_file prediction_folder ground_truth_file -toi terms_of_interest_file -known known_annotations_file
88
+ ```
89
+
90
+
91
+ ## Input files
92
+ **Prediction file** - Tab separated file with the target ID, term ID and score columns.
93
+
94
+ ~~~txt
95
+ A0A0A6YY25 GO:0010468 3.6396e-05
96
+ O54963 GO:0010033 0.0617
97
+ O54963 GO:1990841 0.035
98
+ X1WHY6 GO:0010033 0.1352
99
+ X1WHY6 GO:0048731 0.0478
100
+ ...
101
+ ~~~
102
+
103
+ **Ground truth file** - Tab separated file with the target ID and term ID.
104
+ Additional columns are discarded.
105
+ ~~~
106
+ A0A0A6YY25 GO:0009892
107
+ A0A0A6YY25 GO:0010468
108
+ O54963 GO:1990841
109
+ O54963 GO:0010033
110
+ O88898 GO:1990841
111
+ X1WHY6 GO:0048609
112
+ X1WHY6 GO:0048731
113
+ ...
114
+ ~~~
115
+
116
+ **Information accretion file (optional)** - If not provided, the weighted and S statistics are not generated.
117
+ Information accretion (IA) can be calculated as described in
118
+ [Wyatt and Radivojac, Bioinformatics, 2013](https://pubmed.ncbi.nlm.nih.gov/23813009/)
119
+ and implemented in [https://github.com/claradepaolis/InformationAccretion](https://github.com/claradepaolis/InformationAccretion)
120
+
121
+ ```
122
+ GO:0009892 0.3286
123
+ GO:0010468 0.0184
124
+ GO:0008150 0
125
+ GO:1990841 3.1613
126
+ ...
127
+ ```
128
+
129
+ _**NEW**_: **Known annotations (optional)** - Tab separated file with target ID and term ID.
130
+ File containing known annotations to exclude from partial-knowledge evaluation.
131
+ If not provided, all terms will be used in evaluation
132
+
133
+ ```
134
+ A0A009IHW8 GO:0072523
135
+ A0A009IHW8 GO:0046700
136
+ O54963 GO:0045596
137
+ O54963 GO:2000064
138
+ O54963 GO:0062014
139
+ ...
140
+ ```
141
+
142
+ _**NEW**_: **Terms of Interest (optional)** - File with term ID to include in evaluation for all proteins, one ID per line.
143
+ If not provided, all terms will be used in evaluation.
144
+ This file is used to specify terms that will be evaluated, usually used to exclude terms in the ontology that have since
145
+ been obsoleted or are not of interest for the evaluation.
146
+
147
+ ```
148
+ GO:0055039
149
+ GO:0072523
150
+ GO:0003882
151
+ GO:0010139
152
+ ...
153
+ ```
154
+
155
+ ## Output files
156
+
157
+ Output files are generated in the `results` folder. The same files are gerated by both
158
+ the command line and the `write_results` function.
159
+
160
+ * `evaluation_all.tsv` corresponds to the first object returned by the `cafa_eval` function.
161
+ * `evaluation_best_< metric >.tsv` corresponds to the second object returned by the `cafa_eval` function.
162
+ A different file for each metric is created.
163
+
164
+ **Note**: Weighted scores are generated only if the *Information Accretion* file is provided.
165
+
166
+
167
+ ## Optional parameters
168
+
169
+ | Argument | Default value | Description |
170
+ |:-----------:|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
171
+ | -out_dir | 'results' | Output directory (tsv files + log). Either relative to current path or absolute |
172
+ | -ia | | Information accretion file |
173
+ | -known | | Known annotations for each protein that should be excluded in partial-knowledge evaluation |
174
+ | -toi | | Terms of interest file (terms considered for all proteins) |
175
+ | -no_orphans | False (flag) | Exclude orphans nodes (e.g. roots) from the calculation |
176
+ | -norm | 'cafa' | Normalization strategy. `cafa` normalize precision by the number of predicted targets and recall by the number of targets in the ground truth. `pred` normalize by the number of predicted targets. `gt` normalize by the number of ground truth proteins |
177
+ | -prop | 'max' | Ancestor propagation strategy. `max` propagate the max score of the traversed subgraph iteratively. `fill` propagate with max until a different score is found |
178
+ | -th_step | 0.01 | Step size of prediction score thresholds to consider in the range [0, 1). A smaller step, means more calculation |
179
+ | -max_terms | | Number of terms for protein and namespace to consider in the evaluation. Parsing stops when the target limit for every namespace is reached. The score is not checked, meaning that terms are not sorted before the check, and the check is performed before propagation. |
180
+ | -threads | 4 | Parallel threads. `0` means use all available CPU threads. Do not use multi thread if you are short in memory |
181
+
src/CAFA-evaluator-PK/example/.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ cafa
src/CAFA-evaluator-PK/example/README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Example Evaluation
2
+
3
+ This directory contains files for an example of partial knowledge evaluation and the use of a terms-of-interest file.
4
+
5
+ This is a "toy" example using a subgraph of the Biological Process (BP) aspect of the Gene Ontology. It is only for
6
+ illustrative purposess.
7
+
8
+ ![Example of partial knowledge evaluation](sample_eval.jpg)
9
+
10
+
11
+
12
+ To run the example,
13
+ ``python3 /path/to/CAFA-evaluator/src/cafaeval/__main__.py go-sample.obo predictions ground_truth_partial.tsv -toi toi.tsv -known known_t0.tsv``
14
+
15
+
16
+ ## Known annotations
17
+
18
+ Partial knowledge evaluation is used when there are existing known annotations for a target (protein) in some aspect of the
19
+ ontology on which evaluation will be done. These known annotations must be excluded from the evaluation since
20
+ predictions are not needed for known annotations.
21
+
22
+ To exclude known terms, a list of annotations is passed in with the `-known` input option followed by a path
23
+ to the file containing the list. In this example, the known annotations are known with a yellow background.
24
+ The proteins target1 and target2 both have known annotations in this aspect which we will exclude from evaluation.
25
+
26
+
27
+ Known annotations file (`known_t0.tsv`): list all known annotations for all targets
28
+ ```
29
+ target1 GO:0008150
30
+ target1 GO:0040011
31
+ target1 GO:0032501
32
+ target1 GO:0031987
33
+ target2 GO:0008150
34
+ target2 GO:0040011
35
+ target2 GO:0033058
36
+ ```
37
+
38
+ ## Ground truth
39
+ New annotations for target1 and target2 are considered in partial knowledge evaluation since these targets
40
+ already had knonw annotations before/during the prediction phase.
41
+
42
+ Ground truth file (`ground_truth_partial.tsv`): list new annotations on which to evaluate
43
+ ```
44
+ target1 GO:0033058
45
+ target1 GO:0043056
46
+ target1 GO:0050879
47
+ target1 GO:0071965
48
+ target2 GO:0031987
49
+ target2 GO:0032501
50
+ ```
51
+
52
+ Note: if any of the known annotations are listed in the ground truth file, they will be ignored during
53
+ evaluation.
54
+
55
+ ## Terms of Interest
56
+ It is also possible to exclude some terms from evaluation for _all_ targets. The terms-of-interest file
57
+ is an optional file that is used to list all terms on which to evaluate predictions. This list is
58
+ applied for all targets. The list of terms is passed in with the `-toi` input option. If no file is
59
+ passed in, all terms in the graph will be used for evaluation
60
+
61
+ In this example, terms of interest are shown in figure with a red, bold outline. Note that two of the
62
+ terms in the ontology are excluded (GO:0008150 and GO:0050879) which will not be included in any computations
63
+ for evaluation, even if they appear in the ground truth file.
64
+
65
+ Terms-of-Interest file (`toi.tsv`):
66
+ ```
67
+ GO:0040011
68
+ GO:0032501
69
+ GO:0033058
70
+ GO:0031987
71
+ GO:0071965
72
+ GO:0043056
73
+ GO:0043057
74
+ ```
75
+
76
+
77
+ ## Example Prediction
78
+
79
+
80
+
81
+ The example predictions both achieve precision (pr) and recall (rc) of 1.0 (see table below).
82
+ Looking at the precition files, pred_2 predicts eveything perfect, while pred_1 predicts many terms "incorrectly."
83
+ However, all of the "errors" in pred_1 are on terms that are excluded either because they were not in the terms of interest
84
+ or because they are previously known annotations.
85
+
86
+
87
+ ![Example of predictions](predictions.png)
88
+
89
+
90
+ | filename | ns | tau | n | tp | fp | fn | pr | rc | cov | mi | ru | f | s | pr_micro | rc_micro | f_micro | cov_max |
91
+ |---------------|-----------------------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|-------------|-------------|------------|------------|
92
+ | pred_1.tsv | biological_process | 0.010 | 2.000 | 2.500 | 0.000 | 0.000 | 1.000 | 1.000 | 1.000 | 0.000 | 0.000 | 1.000 | 0.000 | 1.000 | 1.000 | 1.000 | 1.000 |
93
+ | pred_2.tsv | biological_process | 0.010 | 2.000 | 2.500 | 0.000 | 0.000 | 1.000 | 1.000 | 1.000 | 0.000 | 0.000 | 1.000 | 0.000 | 1.000 | 1.000 | 1.000 | 1.000 |
94
+ | | | | | | | | | | | | | | | | | | |
src/CAFA-evaluator-PK/example/go-sample.obo ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ format-version: 1.2
2
+ default-namespace: gene_ontology
3
+ ontology: go
4
+
5
+ [Term]
6
+ id: GO:0008150
7
+ name: biological_process
8
+ namespace: biological_process
9
+ alt_id: GO:0000004
10
+ alt_id: GO:0007582
11
+ alt_id: GO:0044699
12
+ def: "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence." [GOC:pdt]
13
+ comment: Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this.
14
+ subset: goslim_candida
15
+ subset: goslim_chembl
16
+ subset: goslim_metagenomics
17
+ subset: goslim_pir
18
+ subset: goslim_plant
19
+ subset: goslim_pombe
20
+ subset: goslim_yeast
21
+ synonym: "biological process" EXACT []
22
+ synonym: "physiological process" EXACT []
23
+ synonym: "single organism process" RELATED []
24
+ synonym: "single-organism process" RELATED []
25
+ xref: Wikipedia:Biological_process
26
+
27
+ [Term]
28
+ id: GO:0032501
29
+ name: multicellular organismal process
30
+ namespace: biological_process
31
+ alt_id: GO:0044707
32
+ alt_id: GO:0050874
33
+ def: "Any biological process, occurring at the level of a multicellular organism, pertinent to its function." [GOC:curators, GOC:dph, GOC:isa_complete, GOC:tb]
34
+ subset: gocheck_do_not_annotate
35
+ subset: goslim_pir
36
+ synonym: "organismal physiological process" EXACT []
37
+ synonym: "single-multicellular organism process" RELATED []
38
+ is_a: GO:0008150 ! biological_process
39
+
40
+ [Term]
41
+ id: GO:0040011
42
+ name: locomotion
43
+ namespace: biological_process
44
+ def: "Self-propelled movement of a cell or organism from one location to another." [GOC:dgh]
45
+ subset: goslim_chembl
46
+ subset: goslim_pir
47
+ is_a: GO:0008150 ! biological_process
48
+
49
+ [Term]
50
+ id: GO:0032501
51
+ name: multicellular organismal process
52
+ namespace: biological_process
53
+ alt_id: GO:0044707
54
+ alt_id: GO:0050874
55
+ def: "Any biological process, occurring at the level of a multicellular organism, pertinent to its function." [GOC:curators, GOC:dph, GOC:isa_complete, GOC:tb]
56
+ subset: gocheck_do_not_annotate
57
+ subset: goslim_pir
58
+ synonym: "organismal physiological process" EXACT []
59
+ synonym: "single-multicellular organism process" RELATED []
60
+ is_a: GO:0008150 ! biological_process
61
+
62
+ [Term]
63
+ id: GO:0050879
64
+ name: multicellular organismal movement
65
+ namespace: biological_process
66
+ def: "Any physiological process involved in changing the position of a multicellular organism or an anatomical part of a multicellular organism." [GOC:dph, GOC:mtg_muscle, GOC:tb]
67
+ subset: goslim_pir
68
+ is_a: GO:0032501 ! multicellular organismal process
69
+
70
+ [Term]
71
+ id: GO:0031987
72
+ name: locomotion involved in locomotory behavior
73
+ namespace: biological_process
74
+ def: "Self-propelled movement of a cell or organism from one location to another in a behavioral context; the aspect of locomotory behavior having to do with movement." [GOC:mah]
75
+ synonym: "locomotion during locomotory behaviour" EXACT []
76
+ is_a: GO:0040011 ! locomotion
77
+
78
+ [Term]
79
+ id: GO:0033058
80
+ name: directional locomotion
81
+ namespace: biological_process
82
+ def: "Self-propelled movement of a cell or organism from one location to another along an axis." [GOC:mtg_MIT_16mar07]
83
+ is_a: GO:0040011 ! locomotion
84
+
85
+ [Term]
86
+ id: GO:0071965
87
+ name: multicellular organismal locomotion
88
+ namespace: biological_process
89
+ def: "Locomotion in a multicellular organism, i.e. self-propelled movement of a multicellular organism from one location to another." [GOC:mah]
90
+ is_a: GO:0040011 ! locomotion
91
+ is_a: GO:0050879 ! multicellular organismal movement
92
+
93
+ [Term]
94
+ id: GO:0043056
95
+ name: forward locomotion
96
+ namespace: biological_process
97
+ def: "Anterior movement of an organism, following the direction of the head of the animal." [GOC:go_curators]
98
+ is_a: GO:0033058 ! directional locomotion
99
+
100
+ [Term]
101
+ id: GO:0043057
102
+ name: backward locomotion
103
+ namespace: biological_process
104
+ def: "Posterior movement of an organism, e.g. following the direction of the tail of an animal." [GOC:go_curators]
105
+ is_a: GO:0033058 ! directional locomotion
src/CAFA-evaluator-PK/example/ground_truth_limited.tsv ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ target3 GO:0008150
2
+ target3 GO:0040011
3
+ target3 GO:0032501
4
+ target3 GO:0031987
src/CAFA-evaluator-PK/example/ground_truth_partial.tsv ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ target1 GO:0033058
2
+ target1 GO:0043056
3
+ target1 GO:0050879
4
+ target1 GO:0071965
5
+ target2 GO:0031987
6
+ target2 GO:0032501
src/CAFA-evaluator-PK/example/known_t0.tsv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ target1 GO:0008150
2
+ target1 GO:0040011
3
+ target1 GO:0032501
4
+ target1 GO:0031987
5
+ target2 GO:0008150
6
+ target2 GO:0040011
7
+ target2 GO:0033058
src/CAFA-evaluator-PK/example/predictions.png ADDED

Git LFS Details

  • SHA256: 3822b8adafe0ecfe24269d59b4be4d9e843e526aaef00f7f40923452e0accf19
  • Pointer size: 131 Bytes
  • Size of remote file: 993 kB
src/CAFA-evaluator-PK/example/predictions/pred_1.tsv ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ target1 GO:0008150 0.0001
2
+ target1 GO:0040011 0.0001
3
+ target1 GO:0031987 0.0001
4
+ target1 GO:0033058 0.9999
5
+ target1 GO:0043056 0.9999
6
+ target1 GO:0043057 0.0001
7
+ target1 GO:0032501 0.0001
8
+ target1 GO:0050879 0.0001
9
+ target1 GO:0071965 0.9999
10
+ target2 GO:0008150 0.0000
11
+ target2 GO:0040011 0.0001
12
+ target2 GO:0031987 0.9999
13
+ target2 GO:0033058 0.0001
14
+ target2 GO:0043056 0.0001
15
+ target2 GO:0043057 0.0001
16
+ target2 GO:0032501 0.9999
17
+ target2 GO:0050879 0.0001
18
+ target2 GO:0071965 0.0001
19
+ target3 GO:0008150 0.0001
20
+ target3 GO:0040011 0.0001
21
+ target3 GO:0031987 0.9999
22
+ target3 GO:0033058 0.0001
23
+ target3 GO:0043056 0.0001
24
+ target3 GO:0043057 0.0001
25
+ target3 GO:0032501 0.9999
26
+ target3 GO:0050879 0.0001
27
+ target3 GO:0071965 0.0001
src/CAFA-evaluator-PK/example/predictions/pred_2.tsv ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ target1 GO:0008150 0.9999
2
+ target1 GO:0040011 0.9999
3
+ target1 GO:0031987 0.9999
4
+ target1 GO:0033058 0.9999
5
+ target1 GO:0043056 0.9999
6
+ target1 GO:0043057 0.0001
7
+ target1 GO:0032501 0.9999
8
+ target1 GO:0050879 0.9999
9
+ target1 GO:0071965 0.9999
10
+ target2 GO:0008150 0.9999
11
+ target2 GO:0040011 0.9999
12
+ target2 GO:0031987 0.9999
13
+ target2 GO:0033058 0.9999
14
+ target2 GO:0043056 0.0001
15
+ target2 GO:0043057 0.0001
16
+ target2 GO:0032501 0.9999
17
+ target2 GO:0050879 0.0001
18
+ target2 GO:0071965 0.0001
19
+ target3 GO:0008150 0.9999
20
+ target3 GO:0040011 0.9999
21
+ target3 GO:0031987 0.9999
22
+ target3 GO:0033058 0.0001
23
+ target3 GO:0043056 0.0001
24
+ target3 GO:0043057 0.0001
25
+ target3 GO:0032501 0.9999
26
+ target3 GO:0050879 0.0001
27
+ target3 GO:0071965 0.0001
src/CAFA-evaluator-PK/example/sample_eval.jpg ADDED

Git LFS Details

  • SHA256: fd49028e4182f1bb1827f0dcb50d57a7b630cb07f0f9269337772efbc6190dab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
src/CAFA-evaluator-PK/example/toi.tsv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ GO:0040011
2
+ GO:0032501
3
+ GO:0033058
4
+ GO:0031987
5
+ GO:0071965
6
+ GO:0043056
7
+ GO:0043057
src/CAFA-evaluator-PK/pyproject.toml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "cafaeval"
7
+ version = "1.2.1"
8
+ authors = [
9
+ {name = 'Damiano Piovesan', email = 'damiano.piovesan@unipd.it'},
10
+ {name = 'Parnal Joshi', email = 'parnal@iastate.edu'}
11
+ ]
12
+ description = 'CAFA evaluator code'
13
+ readme = {file = 'README.md', 'content-type' = 'text/markdown'}
14
+ #url='https://github.com/BioComputingUP/CAFA-evaluator'
15
+ requires-python = '>=3.6'
16
+ keywords = ['CAFA', 'structured data', 'ontology', 'Gene Ontology', 'protein function']
17
+ license = {file = 'LICENCE.md', 'content-type' = 'text/markdown'}
18
+ classifiers=[
19
+ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
20
+ 'Programming Language :: Python :: 3',
21
+ 'Operating System :: OS Independent',
22
+ ]
23
+ dependencies = [
24
+ 'pandas',
25
+ 'matplotlib',
26
+ 'numpy',
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/BioComputingUP/CAFA-evaluator"
31
+ Repository = "https://github.com/BioComputingUP/CAFA-evaluator"
32
+ Changelog = "https://github.com/BioComputingUP/CAFA-evaluator/blob/main/CHANGELOG.md"
33
+ Wiki = "https://github.com/BioComputingUP/CAFA-evaluator/wiki"
34
+
35
+ [tool.setuptools.packages.find]
36
+ where = ["src"]
37
+ namespaces = false
38
+
39
+ [project.scripts]
40
+ cafaeval = "cafaeval.__main__:command_line"
41
+
42
+ [tool.setuptools.package-data]
43
+ cafaeval = ["data/example/*", "data/example/predictions/*"]
src/CAFA-evaluator-PK/setup.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from setuptools import setup
2
+
3
+ setup()
src/CAFA-evaluator-PK/src/cafaeval/__init__.py ADDED
File without changes
src/CAFA-evaluator-PK/src/cafaeval/__main__.py ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ from cafaeval.evaluation import cafa_eval, write_results
3
+ import logging
4
+
5
+
6
+ def command_line():
7
+
8
+ logging.info("CAFA-evaluator. Calculate precision-recall curves and F-max / S-min")
9
+
10
+ parser = argparse.ArgumentParser(description='CAFA-evaluator. Calculate precision-recall curves and F-max / S-min')
11
+
12
+ parser.add_argument('obo_file', help='Ontology file, OBO format')
13
+ parser.add_argument('pred_dir', help='Predictions directory. Sub-folders are iterated recursively')
14
+ parser.add_argument('gt_file', help='Ground truth file')
15
+
16
+ parser.add_argument('-out_dir', default='results',
17
+ help='Output directory. By default it creates \"results/\" in the current directory')
18
+ parser.add_argument('-ia', help='Information Accretion file (columns: <term> <information_accretion>)')
19
+ parser.add_argument('-no_orphans', action='store_true', default=False,
20
+ help='Exclude terms without parents, e.g. the root(s), in the evaluation')
21
+ parser.add_argument('-norm', choices=['cafa', 'pred', 'gt'], default='cafa',
22
+ help='cafa - implements the CAFA normalization strategy. '
23
+ 'Precision is normalized by the number of predicted targets, '
24
+ 'all other metrics by the number of ground truth targets. '
25
+ 'pred - All metrics are normalized by the number of predicted targets. '
26
+ 'gt - All metrics are normalized by the number of ground truth targets')
27
+ parser.add_argument('-prop', choices=['max', 'fill'], default='max',
28
+ help='Ancestor propagation strategy. max - Propagate the max score of the traversed subgraph '
29
+ 'iteratively. fill - Propagate with max until a different score is found')
30
+ parser.add_argument('-known', default=None,
31
+ help='Known annotations to exclude from evaluation. Same format at ground truth file')
32
+ parser.add_argument('-toi', default=None,
33
+ help='File with GO IDs for terms of interest on which to evaluate. '
34
+ 'Usually, this is to exclude terms that were removed from GO '
35
+ 'since evaluation obo file was created. If None (default), all terms will be'
36
+ 'included in evaluation, possibly excluding roots if -no_orphans is passed')
37
+ parser.add_argument('-th_step', type=float, default=0.01,
38
+ help='Threshold step size in the range [0, 1). A smaller step, means more calculation')
39
+ parser.add_argument('-max_terms', type=int, default=None,
40
+ help='Number of terms for protein and namespace to consider in the evaluation')
41
+ parser.add_argument('-threads', type=int, default=4,
42
+ help='Parallel threads. 0 means use all available CPU threads. '
43
+ 'Do not use multithread if you are short in memory')
44
+ parser.add_argument('-log_level', type=str, choices=['debug', 'info', 'warning', 'error', 'critical'],
45
+ default='info', help='Log level')
46
+
47
+ args = parser.parse_args()
48
+
49
+ # Set the logger
50
+ logging.basicConfig()
51
+ root_logger = logging.getLogger() # root logger
52
+ root_logger.setLevel(logging.getLevelName(args.log_level.upper()))
53
+ log_formatter = logging.Formatter("%(asctime)s [%(levelname)-5.5s] %(message)s")
54
+ root_handler = root_logger.handlers[0]
55
+ root_handler.setFormatter(log_formatter)
56
+
57
+ # Run the evaluation
58
+ df, dfs_best = cafa_eval(args.obo_file, args.pred_dir, args.gt_file,
59
+ ia=args.ia, no_orphans=args.no_orphans, norm=args.norm, prop=args.prop,
60
+ exclude=args.known, toi_file=args.toi,
61
+ max_terms=args.max_terms, th_step=args.th_step, n_cpu=args.threads)
62
+
63
+ # Write the results
64
+ write_results(df, dfs_best, out_dir=args.out_dir, th_step=args.th_step)
65
+
66
+
67
+ if __name__ == "__main__":
68
+
69
+ command_line()
src/CAFA-evaluator-PK/src/cafaeval/evaluation.py ADDED
@@ -0,0 +1,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import numpy as np
3
+ import pandas as pd
4
+ import multiprocessing as mp
5
+ from cafaeval.parser import obo_parser, gt_parser, pred_parser, gt_exclude_parser, update_toi
6
+ from cafaeval.tests import test_norm_metric, test_intersection
7
+ import logging
8
+ logging.getLogger(__name__).addHandler(logging.NullHandler())
9
+
10
+
11
+ # Return a mask for all the predictions (matrix) >= tau
12
+ def solidify_prediction(pred, tau):
13
+ return pred >= tau
14
+
15
+
16
+ # computes the f metric for each precision and recall in the input arrays
17
+ def compute_f(pr, rc):
18
+ n = 2 * pr * rc
19
+ d = pr + rc
20
+ return np.divide(n, d, out=np.zeros_like(n, dtype=float), where=d != 0)
21
+
22
+
23
+ def compute_s(ru, mi):
24
+ return np.sqrt(ru**2 + mi**2)
25
+ # return np.where(np.isnan(ru), mi, np.sqrt(ru + np.nan_to_num(mi)))
26
+
27
+
28
+ def compute_confusion_matrix(tau_arr, g, pred_matrix, toi, n_gt, ic_arr=None):
29
+ """
30
+ Perform the evaluation at the matrix level for all tau thresholds
31
+ The calculation is
32
+ """
33
+ # n, tp, fp, fn, pr, rc (fp = misinformation, fn = remaining uncertainty)
34
+ metrics = np.zeros((len(tau_arr), 6), dtype='float')
35
+
36
+ for i, tau in enumerate(tau_arr):
37
+
38
+ # Filter predictions based on tau threshold
39
+ p = solidify_prediction(pred_matrix, tau)
40
+
41
+ # Terms subsets
42
+ intersection = np.logical_and(p, g) # TP
43
+ mis = np.logical_and(p, np.logical_not(g)) # FP, predicted but not in the ground truth
44
+ remaining = np.logical_and(np.logical_not(p), g) # FN, not predicted but in the ground truth
45
+
46
+ # Weighted evaluation
47
+ if ic_arr is not None:
48
+ p = p * ic_arr[toi]
49
+ intersection = intersection * ic_arr[toi] # TP
50
+ mis = mis * ic_arr[toi] # FP, predicted but not in the ground truth
51
+ remaining = remaining * ic_arr[toi] # FN, not predicted but in the ground truth
52
+
53
+ n_pred = p.sum(axis=1) # TP + FP (number of terms predicted in each protein)
54
+ n_intersection = intersection.sum(axis=1) # TP (number of TP terms per protein)
55
+ # Number of proteins with at least one term predicted with score >= tau
56
+ metrics[i, 0] = (p.sum(axis=1) > 0).sum()
57
+
58
+ # Sum of confusion matrices
59
+ metrics[i, 1] = n_intersection.sum() # TP (total terms)
60
+ metrics[i, 2] = mis.sum(axis=1).sum() # FP
61
+ metrics[i, 3] = remaining.sum(axis=1).sum() # FN
62
+
63
+ # Macro-averaging
64
+ metrics[i, 4] = np.divide(n_intersection, n_pred, out=np.zeros_like(n_intersection, dtype='float'), where=n_pred > 0).sum() # Precision
65
+ metrics[i, 5] = np.divide(n_intersection, n_gt, out=np.zeros_like(n_gt, dtype='float'), where=n_gt > 0).sum() # Recall
66
+
67
+ return metrics
68
+
69
+
70
+ def compute_confusion_matrix_exclude(tau_arr, g_perprotein, pred_matrix, toi_perprotein, n_gt, ic_arr=None):
71
+ """
72
+ Perform the evaluation at the matrix level for all tau thresholds
73
+ The calculation is
74
+
75
+ Here, g is the full ground truth matrix without filtering terms of interest (toi).
76
+ Instead,
77
+ """
78
+ # n, tp, fp, fn, pr, rc (fp = misinformation, fn = remaining uncertainty)
79
+ metrics = np.zeros((len(tau_arr), 6), dtype='float')
80
+
81
+ for i, tau in enumerate(tau_arr):
82
+
83
+ # Filter predictions based on tau threshold
84
+ p_perprotein = [solidify_prediction(pred_matrix[p_idx, tois], tau) for p_idx, tois in enumerate(toi_perprotein)]
85
+
86
+ # Terms subsets
87
+ intersection = [np.logical_and(p_i, g_i) for p_i, g_i in zip(p_perprotein, g_perprotein)] # TP
88
+ mis = [np.logical_and(p_i, np.logical_not(g_i)) for p_i, g_i in zip(p_perprotein, g_perprotein)] # FP, predicted but not in the ground truth
89
+ remaining = [np.logical_and(np.logical_not(p_i), g_i) for p_i, g_i in zip(p_perprotein, g_perprotein)] # FN, not predicted but in the ground truth
90
+
91
+ # Weighted evaluation
92
+ if ic_arr is not None:
93
+ p_perprotein = [p_i * ic_arr[tois] for p_i, tois in zip(p_perprotein, toi_perprotein)]
94
+ intersection = [inter * ic_arr[tois] for inter, tois in zip(intersection, toi_perprotein)] # TP
95
+ mis = [misinf * ic_arr[tois] for misinf, tois in zip(mis, toi_perprotein)] # FP, predicted but not in the ground truth
96
+ remaining = [rem * ic_arr[tois] for rem, tois in zip(remaining, toi_perprotein)] # FN, not predicted but in the ground truth
97
+
98
+ n_pred = np.array([p_i.sum() for p_i in p_perprotein]) # TP + FP
99
+ n_intersection = np.array([inter.sum() for inter in intersection]) # TP
100
+ precision = np.divide(n_intersection, n_pred, out=np.zeros_like(n_intersection, dtype='float'), where=n_pred > 0)
101
+ recall = np.divide(n_intersection, n_gt, out=np.zeros_like(n_gt, dtype='float'), where=n_gt > 0)
102
+
103
+ # metrics tests
104
+ test_norm_metric(precision, name='precision')
105
+ test_norm_metric(recall, name='recall')
106
+ test_intersection(n_intersection, n_pred, n_gt)
107
+
108
+
109
+ # Number of proteins with at least one term predicted with score >= tau
110
+ metrics[i, 0] = (n_pred > 0).sum()
111
+
112
+ # Sum of confusion matrices
113
+ metrics[i, 1] = n_intersection.sum() # TP
114
+ metrics[i, 2] = np.sum([m.sum() for m in mis]) # FP
115
+ metrics[i, 3] = np.sum([r.sum() for r in remaining]) # FN
116
+
117
+ # Macro-averaging
118
+ metrics[i, 4] = precision.sum() # Precision
119
+ metrics[i, 5] = recall.sum() # Recall
120
+
121
+ print("metrics calculated")
122
+ return metrics
123
+
124
+
125
+ def compute_metrics(pred, gt_matrix, tau_arr, toi, gt_exclude=None, ic_arr=None, n_cpu=0):
126
+ """
127
+ Takes the prediction and the ground truth and for each threshold in tau_arr
128
+ calculates the confusion matrix and returns the coverage,
129
+ precision, recall, remaining uncertainty and misinformation.
130
+ Toi is the list of terms (indexes) to be considered
131
+ """
132
+ # Parallelization
133
+ if n_cpu == 0:
134
+ n_cpu = mp.cpu_count()
135
+
136
+ columns = ["n", "tp", "fp", "fn", "pr", "rc"]
137
+ # filter out proteins with no annotations in Terms-Of-Interest (toi)
138
+ proteins_has_gt = gt_matrix[:, toi].sum(1) > 0
139
+ proteins_with_gt = np.where(proteins_has_gt)[0]
140
+ gt_with_annots = gt_matrix[proteins_with_gt, :]
141
+ g = gt_with_annots[:, toi]
142
+ p = pred[proteins_has_gt, :][:, toi]
143
+
144
+ if gt_exclude is not None:
145
+ # g_exclude = gt_exclude.matrix[proteins_with_gt, :][:, toi]
146
+ toi_perprotein = [np.setdiff1d(toi, gt_exclude.matrix[p, :].nonzero()[0],
147
+ assume_unique=True) for p in
148
+ proteins_with_gt] # only include proteins with annotations
149
+ gt_perprotein = [gt_with_annots[p_idx, tois] for p_idx, tois in enumerate(toi_perprotein)]
150
+ # The number of GT annotations per proteins will change to exclude the set from g_exclude
151
+ # count_g = np.logical_and(np.logical_not(g_exclude), g) # count terms in g only if they are not in exclude list
152
+ n_gt = np.array([gpp.sum().item() for gpp in gt_perprotein]) # number of terms annotated in each protein
153
+ if np.any(n_gt==0):
154
+ print(f'Proteins with no annotations in TOI {np.count_nonzero(n_gt==0)}')
155
+ if ic_arr is not None:
156
+ n_gt = np.array([(gpp * ic_arr[tois]).sum().item() for gpp, tois in zip(gt_perprotein, toi_perprotein)])
157
+ else:
158
+ count_g = g
159
+ # Simple metrics: number of terms annotated in each protein
160
+ if ic_arr is None:
161
+ n_gt = count_g.sum(axis=1)
162
+ # Weighted metrics
163
+ else:
164
+ n_gt = (count_g * ic_arr[toi]).sum(axis=1)
165
+
166
+ if gt_exclude is None:
167
+ arg_lists = [[tau_arr, g, p, toi, n_gt, ic_arr] for tau_arr in np.array_split(tau_arr, n_cpu)]
168
+ with mp.Pool(processes=n_cpu) as pool:
169
+ metrics = np.concatenate(pool.starmap(compute_confusion_matrix, arg_lists), axis=0)
170
+ else:
171
+ arg_lists = [[tau_arr, gt_perprotein, pred[gt_matrix[:,toi].sum(1)>0, :], toi_perprotein, n_gt, ic_arr] for tau_arr in np.array_split(tau_arr, n_cpu)]
172
+ with mp.Pool(processes=n_cpu) as pool:
173
+ metrics = np.concatenate(pool.starmap(compute_confusion_matrix_exclude, arg_lists), axis=0)
174
+
175
+ print("Jobs on all CPUs completed.")
176
+ return pd.DataFrame(metrics, columns=columns)
177
+
178
+
179
+ def normalize(metrics, ns, tau_arr, ne, normalization):
180
+
181
+ # Normalize columns
182
+ for column in metrics.columns:
183
+ if column != "n":
184
+ # By default normalize by gt
185
+ denominator = ne
186
+ # Otherwise normalize by pred
187
+ if normalization == 'pred' or (normalization == 'cafa' and column == "pr"):
188
+ denominator = metrics["n"]
189
+ metrics[column] = np.divide(metrics[column], denominator,
190
+ out=np.zeros_like(metrics[column], dtype='float'),
191
+ where=denominator > 0)
192
+
193
+ metrics['ns'] = [ns] * len(tau_arr)
194
+ metrics['tau'] = tau_arr
195
+ metrics['cov'] = metrics['n'] / ne
196
+ metrics['mi'] = metrics['fp']
197
+ metrics['ru'] = metrics['fn']
198
+
199
+ metrics['f'] = compute_f(metrics['pr'], metrics['rc'])
200
+ metrics['s'] = compute_s(metrics['ru'], metrics['mi'])
201
+
202
+ # Micro-average, calculation is based on the average of the confusion matrices
203
+ metrics['pr_micro'] = np.divide(metrics['tp'], metrics['tp'] + metrics['fp'],
204
+ out=np.zeros_like(metrics['tp'], dtype='float'),
205
+ where=(metrics['tp'] + metrics['fp']) > 0)
206
+ metrics['rc_micro'] = np.divide(metrics['tp'], metrics['tp'] + metrics['fn'],
207
+ out=np.zeros_like(metrics['tp'], dtype='float'),
208
+ where=(metrics['tp'] + metrics['fn']) > 0)
209
+ metrics['f_micro'] = compute_f(metrics['pr_micro'], metrics['rc_micro'])
210
+
211
+ return metrics
212
+
213
+
214
+ def evaluate_prediction(prediction, gt, ontologies, tau_arr, gt_exclude=None, normalization='cafa', n_cpu=0):
215
+
216
+ dfs = []
217
+ dfs_w = []
218
+
219
+ # Unweighted metrics
220
+ for ns in prediction:
221
+ # number of proteins with positive annotations
222
+ proteins_has_gt = gt[ns].matrix[:, ontologies[ns].toi].sum(1) > 0
223
+ proteins_with_gt = np.where(proteins_has_gt)[0]
224
+ num_annot_prots = proteins_has_gt.sum() # number of proteins with positive annotations in TOIs
225
+ if gt_exclude is None:
226
+ exclude = None
227
+ else:
228
+ exclude = gt_exclude[ns]
229
+ toi_perprotein = [
230
+ np.setdiff1d(ontologies[ns].toi, gt_exclude[ns].matrix[p, :].nonzero()[0],
231
+ assume_unique=True) for p in proteins_with_gt]
232
+ # update the number of proteins with positive annotations, now on protein-specific TOIs
233
+ num_annot_prots = sum([gt[ns].matrix[p, toi_perprotein[p_idx]].sum()>0 for
234
+ p_idx, p in enumerate(proteins_with_gt)])
235
+
236
+ ne = np.full(len(tau_arr), num_annot_prots)
237
+
238
+ dfs.append(normalize(compute_metrics(
239
+ prediction[ns].matrix, gt[ns].matrix, tau_arr, ontologies[ns].toi, exclude, None, n_cpu),
240
+ ns, tau_arr, ne, normalization))
241
+
242
+ # Weighted metrics
243
+ if ontologies[ns].ia is not None:
244
+
245
+ # number of proteins with positive annotations
246
+ proteins_has_gt = gt[ns].matrix[:, ontologies[ns].toi_ia].sum(1) > 0
247
+ num_annot_prots = (proteins_has_gt).sum()
248
+
249
+ if gt_exclude is None:
250
+ exclude = None
251
+ else:
252
+ exclude = gt_exclude[ns]
253
+ toi_perprotein_ia = [
254
+ np.setdiff1d(ontologies[ns].toi_ia, gt_exclude[ns].matrix[p, :].nonzero()[0],
255
+ assume_unique=True) for p in proteins_with_gt]
256
+ # update the number of proteins with positive annotations, now on protein-specific TOIs
257
+ num_annot_prots = sum([gt[ns].matrix[p, toi_perprotein_ia[p_idx]].sum() > 0 for
258
+ p_idx, p in enumerate(proteins_with_gt)])
259
+
260
+ ne = np.full(len(tau_arr), num_annot_prots)
261
+
262
+ dfs_w.append(normalize(compute_metrics(
263
+ prediction[ns].matrix, gt[ns].matrix, tau_arr, ontologies[ns].toi_ia, exclude, ontologies[ns].ia, n_cpu),
264
+ ns, tau_arr, ne, normalization))
265
+
266
+ dfs = pd.concat(dfs)
267
+
268
+ # Merge weighted and unweighted dataframes
269
+ if dfs_w:
270
+ dfs_w = pd.concat(dfs_w)
271
+ dfs = pd.merge(dfs, dfs_w, on=['ns', 'tau'], suffixes=('', '_w'))
272
+
273
+ return dfs
274
+
275
+
276
+ def cafa_eval(obo_file, pred_dir, gt_file, ia=None, no_orphans=False, norm='cafa', prop='max',
277
+ exclude=None, toi_file=None, max_terms=None, th_step=0.01, n_cpu=1):
278
+
279
+ # Tau array, used to compute metrics at different score thresholds
280
+ tau_arr = np.arange(th_step, 1, th_step)
281
+
282
+ # Parse the OBO file and creates a different graphs for each namespace
283
+ ontologies = obo_parser(obo_file, ("is_a", "part_of"), ia, not no_orphans)
284
+ if toi_file is not None:
285
+ ontologies = update_toi(ontologies, toi_file)
286
+
287
+ # Parse ground truth file
288
+ gt = gt_parser(gt_file, ontologies)
289
+ if exclude is not None:
290
+ gt_exclude = gt_exclude_parser(exclude, gt, ontologies)
291
+ else:
292
+ gt_exclude = None
293
+
294
+ # Set prediction files looking recursively in the prediction folder
295
+ pred_folder = os.path.normpath(pred_dir) + "/" # add the tailing "/"
296
+ pred_files = []
297
+ for root, dirs, files in os.walk(pred_folder):
298
+ for file in files:
299
+ pred_files.append(os.path.join(root, file))
300
+ logging.debug("Prediction paths {}".format(pred_files))
301
+
302
+ # Parse prediction files and perform evaluation
303
+ dfs = []
304
+ for file_name in pred_files:
305
+ print(file_name)
306
+ prediction = pred_parser(file_name, ontologies, gt, prop, max_terms)
307
+ if not prediction:
308
+ logging.warning("Prediction: {}, not evaluated".format(file_name))
309
+ else:
310
+ df_pred = evaluate_prediction(prediction, gt, ontologies, tau_arr, gt_exclude,
311
+ normalization=norm, n_cpu=n_cpu)
312
+ df_pred['filename'] = file_name.replace(pred_folder, '').replace('/', '_')
313
+ dfs.append(df_pred)
314
+ logging.info("Prediction: {}, evaluated".format(file_name))
315
+
316
+ # Concatenate all dataframes and save them
317
+ df = None
318
+ dfs_best = {}
319
+ if dfs:
320
+ df = pd.concat(dfs)
321
+
322
+ # Remove rows with no coverage
323
+ df = df[df['cov'] > 0].reset_index(drop=True)
324
+ df.set_index(['filename', 'ns', 'tau'], inplace=True)
325
+
326
+ # Calculate the best index for each namespace and each evaluation metric
327
+ for metric, cols in [('f', ['rc', 'pr']), ('f_w', ['rc_w', 'pr_w']), ('s', ['ru', 'mi']), ('f_micro', ['rc_micro', 'pr_micro']), ('f_micro_w', ['rc_micro_w', 'pr_micro_w'])]:
328
+ if metric in df.columns:
329
+ index_best = df.groupby(level=['filename', 'ns'])[metric].idxmax() if metric in ['f', 'f_w', 'f_micro', 'f_micro_w'] else df.groupby(['filename', 'ns'])[metric].idxmin()
330
+ df_best = df.loc[index_best]
331
+ if metric[-2:] != '_w':
332
+ df_best['cov_max'] = df.reset_index('tau').loc[[ele[:-1] for ele in index_best]].groupby(level=['filename', 'ns'])['cov'].max()
333
+ else:
334
+ df_best['cov_max'] = df.reset_index('tau').loc[[ele[:-1] for ele in index_best]].groupby(level=['filename', 'ns'])['cov_w'].max()
335
+ dfs_best[metric] = df_best
336
+ else:
337
+ logging.info("No predictions evaluated")
338
+
339
+ return df, dfs_best
340
+
341
+
342
+ def write_results(df, dfs_best, out_dir='results', th_step=0.01):
343
+
344
+ # Create output folder here in order to store the log file
345
+ out_folder = os.path.normpath(out_dir) + "/"
346
+ if not os.path.isdir(out_folder):
347
+ os.makedirs(out_folder)
348
+
349
+ # Set the number of decimals to write in the output files based on the threshold step size
350
+ decimals = int(np.ceil(-np.log10(th_step))) + 1
351
+
352
+ df.to_csv('{}/evaluation_all.tsv'.format(out_folder), float_format="%.{}f".format(decimals), sep="\t")
353
+
354
+ for metric in dfs_best:
355
+ dfs_best[metric].to_csv('{}/evaluation_best_{}.tsv'.format(out_folder, metric), float_format="%.{}f".format(decimals), sep="\t")
src/CAFA-evaluator-PK/src/cafaeval/graph.py ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import copy
3
+ import logging
4
+ logging.getLogger(__name__).addHandler(logging.NullHandler())
5
+
6
+
7
+ class Graph:
8
+ """
9
+ Ontology class. One ontology == one namespace
10
+ DAG is the adjacence matrix (sparse) which represent a Directed Acyclic Graph where
11
+ DAG(i,j) == 1 means that the go term i is_a (or is part_of) j
12
+ Parents that are in a different namespace are discarded
13
+ """
14
+ def __init__(self, namespace, terms_dict, ia_dict=None, orphans=False):
15
+
16
+ """
17
+ terms_dict = {term: {name: , namespace: , def: , alt_id: , rel:}}
18
+ """
19
+ self.namespace = namespace
20
+ self.dag = [] # [[], ...] terms (rows, axis 0) x parents (columns, axis 1)
21
+ self.terms_dict = {} # {term: {index: , name: , namespace: , def: } used to assign term indexes in the gt
22
+ self.terms_dict_alt = {} # {alt_id: set(term, ...) } alternative ids to canonical ids
23
+ self.terms_list = [] # [{id: term, name:, namespace: , def:, adj: set(), children: set()}, ...]
24
+ self.idxs = None # Number of terms
25
+ self.order = None
26
+ self.toi = None
27
+ self.toi_ia = None
28
+ self.ia = None
29
+
30
+ rel_list = []
31
+ for self.idxs, (term_id, term) in enumerate(terms_dict.items()):
32
+ rel_list.extend([[term_id, rel, term['namespace']] for rel in term['rel']])
33
+ self.terms_list.append({'id': term_id, 'name': term['name'], 'namespace': namespace, 'def': term['def'],
34
+ 'adj': set(), 'children': set()})
35
+ self.terms_dict[term_id] = {'index': self.idxs, 'name': term['name'], 'namespace': namespace, 'def': term['def']}
36
+ for a_id in term['alt_id']:
37
+ self.terms_dict_alt.setdefault(a_id, set()).add(term_id)
38
+
39
+ self.idxs += 1
40
+
41
+ self.dag = np.zeros((self.idxs, self.idxs), dtype='bool')
42
+
43
+ # id1 term (row, axis 0), id2 parent (column, axis 1)
44
+ for id1, id2, ns in rel_list:
45
+ if self.terms_dict.get(id2):
46
+ i = self.terms_dict[id1]['index']
47
+ j = self.terms_dict[id2]['index']
48
+ self.dag[i, j] = 1
49
+ # Remove duplicates in adj and children lists
50
+ # This ensures that a parent-child term does not have multiple edges, which could lead to wrong topological sorting
51
+ self.terms_list[i]['adj'].add(j)
52
+ self.terms_list[j]['children'].add(i)
53
+ logging.debug("i,j {},{} {},{}".format(i, j, id1, id2))
54
+ else:
55
+ logging.debug('Skipping branch to external namespace: {}'.format(id2))
56
+ logging.debug("dag {}".format(self.dag))
57
+
58
+ # Topological sorting
59
+ self.top_sort()
60
+ logging.debug("order sorted {}".format(self.order))
61
+
62
+ if orphans:
63
+ self.toi = np.arange(self.dag.shape[0]) # All terms, also those without parents
64
+ else:
65
+ self.toi = np.nonzero(self.dag.sum(axis=1) > 0)[0] # Only terms with parents
66
+ logging.debug("toi {}".format(self.toi))
67
+
68
+ if ia_dict is not None:
69
+ self.set_ia(ia_dict)
70
+
71
+ logging.info("Ontology: {}, total {}, roots {}, leaves {}, alternative_ids {}".format(self.namespace,
72
+ len(np.where(self.dag.sum(axis=1) != 0)[0]),
73
+ len(np.where(self.dag.sum(axis=1) == 0)[0]),
74
+ len(np.where(self.dag.sum(axis=0) == 0)[0]),
75
+ len(self.terms_dict_alt)))
76
+
77
+ return
78
+
79
+ def top_sort(self):
80
+ """
81
+ Takes a sparse matrix representing a DAG and returns an array with nodes indexes in topological order
82
+ https://en.wikipedia.org/wiki/Topological_sorting
83
+ """
84
+ indexes = []
85
+ visited = 0
86
+ (rows, cols) = self.dag.shape
87
+
88
+ # create a vector containing the in-degree of each node
89
+ in_degree = self.dag.sum(axis=0)
90
+ # logging.debug("degree {}".format(in_degree))
91
+
92
+ # find the nodes with in-degree 0 (leaves) and add them to the queue
93
+ queue = np.nonzero(in_degree == 0)[0].tolist()
94
+ # logging.debug("queue {}".format(queue))
95
+
96
+ # for each element of the queue increment visits, add them to the list of ordered nodes
97
+ # and decrease the in-degree of the neighbor nodes
98
+ # and add them to the queue if they reach in-degree == 0
99
+ while queue:
100
+ visited += 1
101
+ idx = queue.pop(0)
102
+ indexes.append(idx)
103
+ in_degree[idx] -= 1
104
+ l = self.terms_list[idx]['adj']
105
+ if len(l) > 0:
106
+ for j in l:
107
+ in_degree[j] -= 1
108
+ if in_degree[j] == 0:
109
+ queue.append(j)
110
+
111
+ # if visited is equal to the number of nodes in the graph then the sorting is complete
112
+ # otherwise the graph can't be sorted with topological order
113
+ if visited == rows:
114
+ self.order = indexes
115
+ else:
116
+ raise Exception("The sparse matrix doesn't represent an acyclic graph")
117
+
118
+ def set_ia(self, ia_dict):
119
+ self.ia = np.zeros(self.idxs, dtype='float')
120
+ for term_id in self.terms_dict:
121
+ if ia_dict.get(term_id):
122
+ self.ia[self.terms_dict[term_id]['index']] = ia_dict.get(term_id)
123
+ else:
124
+ logging.debug('Missing IA for term: {}'.format(term_id))
125
+ # Convert inf to zero
126
+ np.nan_to_num(self.ia, copy=False, nan=0, posinf=0, neginf=0)
127
+ self.toi_ia = np.nonzero(self.ia > 0)[0]
128
+
129
+
130
+ class Prediction:
131
+ """
132
+ The score matrix contains the scores given by the predictor for every node of the ontology
133
+ """
134
+ def __init__(self, ids, matrix, namespace=None):
135
+ self.ids = ids
136
+ self.matrix = matrix # scores
137
+ self.namespace = namespace
138
+
139
+ def __str__(self):
140
+ return "\n".join(["{}\t{}\t{}".format(index, self.matrix[index], self.namespace) for index, _id in enumerate(self.ids)])
141
+
142
+
143
+ class GroundTruth:
144
+ def __init__(self, ids, matrix, namespace=None):
145
+ self.ids = ids
146
+ self.matrix = matrix
147
+ self.namespace = namespace
148
+
149
+
150
+ def propagate(matrix, ont, order, mode='max'):
151
+ """
152
+ Update inplace the score matrix (proteins x terms) up to the root taking the max between children and parents
153
+ """
154
+ if matrix.shape[0] == 0:
155
+ raise Exception("Empty matrix")
156
+
157
+ deepest = np.where(np.sum(matrix[:, order], axis=0) > 0)[0][0]
158
+ if deepest.size == 0:
159
+ raise Exception("The matrix is empty")
160
+
161
+ # Remove leaves
162
+ order_ = np.delete(order, [range(0, deepest)])
163
+
164
+ for i in order_:
165
+ # Get direct children
166
+ children = np.where(ont.dag[:, i] != 0)[0]
167
+ if children.size > 0:
168
+ # Add current terms to children
169
+ cols = np.concatenate((children, [i]))
170
+ if mode == 'max':
171
+ matrix[:, i] = matrix[:, cols].max(axis=1)
172
+ elif mode == 'fill':
173
+ # Select only rows where the current term is 0
174
+ rows = np.where(matrix[:, i] == 0)[0]
175
+ if rows.size:
176
+ idx = np.ix_(rows, cols)
177
+ matrix[rows, i] = matrix[idx].max(axis=1)
178
+ return
179
+
180
+
181
+
182
+